fog--fog/bin/fog

42 lines
1014 B
Plaintext
Raw Normal View History

2009-10-02 02:22:47 -04:00
#!/usr/bin/env ruby
2010-10-13 16:20:18 -04:00
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'fog'))
2009-10-02 02:22:47 -04:00
require 'irb'
require 'yaml'
Fog.credential = ARGV.first ? ARGV.first.to_sym : nil
2010-10-04 17:03:22 -04:00
Fog.mock! if ENV['FOG_MOCK']
unless Fog.credentials
exit
2010-02-06 18:42:38 -05:00
end
2011-01-07 18:41:51 -05:00
require 'fog/bin'
2011-02-11 17:36:48 -05:00
providers = Fog.providers
providers = if providers.length > 1
providers[0...-1].join(', ') << ' and ' << providers[-1]
else
providers.first
end
if ARGV.length > 1
puts(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)
2010-09-17 14:47:06 -04:00
Formatador.display_line('Welcome to fog interactive!')
Formatador.display_line(":#{Fog.credential} provides #{providers}")
providers = Fog.providers
catch(:IRB_EXIT) { @irb.eval_input }
2010-05-01 23:46:52 -04:00
end