2009-10-02 02:22:47 -04:00
|
|
|
#!/usr/bin/env ruby
|
2010-05-03 18:10:36 -04:00
|
|
|
require File.join(File.dirname(__FILE__), '..', 'lib', 'fog')
|
2009-10-02 02:22:47 -04:00
|
|
|
require 'irb'
|
|
|
|
require 'yaml'
|
2010-05-16 00:05:16 -04:00
|
|
|
require File.join('fog', 'credentials')
|
2010-09-03 04:11:45 -04:00
|
|
|
Fog.credential = ARGV.first ? ARGV.first.to_sym : nil
|
2010-09-02 16:39:01 -04:00
|
|
|
Fog.bin = true
|
2010-02-12 00:41:37 -05:00
|
|
|
unless Fog.credentials
|
|
|
|
exit
|
2010-02-06 18:42:38 -05:00
|
|
|
end
|
|
|
|
|
2010-06-23 16:22:20 -04:00
|
|
|
require 'fog/bin'
|
2010-02-15 20:15:56 -05:00
|
|
|
|
2010-03-27 21:06:32 -04:00
|
|
|
if ARGV.length > 1
|
2010-03-28 20:53:53 -04:00
|
|
|
print(instance_eval(ARGV[1..-1].join(' ')).to_json)
|
2010-02-15 20:15:56 -05:00
|
|
|
else
|
2010-02-14 17:34:33 -05:00
|
|
|
|
2010-03-27 21:06:32 -04: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-03 18:32:30 -04:00
|
|
|
modules = Fog.modules.map{|_module_| _module_.to_s}
|
|
|
|
modules = if modules.length > 1
|
|
|
|
modules[0...-1].join(', ') << ' and ' << modules[-1]
|
2010-03-27 21:06:32 -04:00
|
|
|
else
|
2010-09-03 18:32:30 -04:00
|
|
|
modules.first
|
2010-03-27 21:06:32 -04:00
|
|
|
end
|
2010-09-17 14:47:06 -04:00
|
|
|
Formatador.display_line('Welcome to fog interactive!')
|
|
|
|
Formatador.display_line(":#{Fog.credential.to_s} credentials provide #{modules}")
|
2010-09-03 18:32:30 -04:00
|
|
|
Fog.modules.each do |_module_|
|
|
|
|
if _module_.respond_to?(:startup_notice)
|
|
|
|
_module_.send(:startup_notice)
|
2010-05-03 00:46:43 -04:00
|
|
|
end
|
|
|
|
end
|
2010-03-27 21:06:32 -04:00
|
|
|
|
|
|
|
catch(:IRB_EXIT) { @irb.eval_input }
|
|
|
|
|
2010-05-01 23:46:52 -04:00
|
|
|
end
|