fog--fog/bin/fog

42 lines
1.0 KiB
Plaintext
Raw Normal View History

2009-10-02 06:22:47 +00:00
#!/usr/bin/env ruby
2010-10-13 20:20:18 +00:00
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'fog'))
2009-10-02 06:22:47 +00:00
require 'irb'
require 'yaml'
Fog.credential = ARGV.first ? ARGV.first.to_sym : nil
2010-10-04 21:03:22 +00:00
Fog.mock! if ENV['FOG_MOCK']
if Fog.credentials.empty?
Fog::Errors.missing_credentials
2010-02-06 23:42:38 +00:00
end
2011-01-07 23:41:51 +00:00
require 'fog/bin'
providers = Fog.available_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 18:47:06 +00: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-02 03:46:52 +00:00
end