Sha256: 658847047fa0673508be4204e446aad800568e0d9d29ca818b40240da9161e7f

Contents?: true

Size: 1.13 KB

Versions: 30

Compression:

Stored size: 1.13 KB

Contents

#!/usr/bin/env ruby
require File.join(File.dirname(__FILE__), '..', 'lib', 'fog')
require 'irb'
require 'yaml'
require File.join('fog', 'credentials')
Fog.credential = ARGV.first ? :"#{ARGV.first}" : :default
unless Fog.credentials
  exit
end

require 'fog/bin'

if ARGV.length > 1
  print(instance_eval(ARGV[1..-1].join(' ')).to_json)
else

  ARGV.clear # Avoid passing args to IRB
  IRB.setup(nil)
  @irb = IRB::Irb.new(nil)
  IRB.conf[:MAIN_CONTEXT] = @irb.context
  IRB.conf[:PROMPT][:FOG] = IRB.conf[:PROMPT][:SIMPLE].dup
  IRB.conf[:PROMPT][:FOG][:RETURN] = "%s\n"
  @irb.context.prompt_mode = :FOG
  @irb.context.workspace = IRB::WorkSpace.new(binding)

  services = Fog.services.map{|service| service.to_s}
  available_services = if services.length > 1
    services[0...-1].join(', ') << ' and ' << services[-1]
  else
    services.first
  end
  print "Welcome to fog interactive!\n"
  print "Your '#{Fog.credential.to_s}' configuration provides access to #{available_services}.\n"
  Fog.services.each do |service|
    if service.respond_to?(:startup_notice)
      service.send(:startup_notice)
    end
  end

  catch(:IRB_EXIT) { @irb.eval_input }

end

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
fog-0.2.30 bin/fog
fog-0.2.28 bin/fog
fog-0.2.27 bin/fog
fog-0.2.26 bin/fog
fog-0.2.25 bin/fog
fog-0.2.24 bin/fog
tecnh-fog-0.2.23.vpc bin/fog
fog-0.2.23 bin/fog
fog-0.2.22 bin/fog
fog-0.2.21 bin/fog
fog-0.2.20 bin/fog
fog-0.2.19 bin/fog
fog-0.2.18 bin/fog
fog-0.2.17 bin/fog
fog-0.2.16 bin/fog
fog-0.2.15 bin/fog
fog-0.2.14 bin/fog
fog-0.2.13 bin/fog
fog-0.2.12 bin/fog
fog-0.2.11 bin/fog