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