Sha256: 8a576adafb26d9c79cf17243cff752f2ef35422f2e2b0d16a6f476c677ef36bd

Contents?: true

Size: 1014 Bytes

Versions: 4

Compression:

Stored size: 1014 Bytes

Contents

#!/usr/bin/env ruby
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'fog'))
require 'irb'
require 'yaml'
Fog.credential = ARGV.first ? ARGV.first.to_sym : nil
Fog.mock! if ENV['FOG_MOCK']
unless Fog.credentials
  exit
end

require 'fog/bin'

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)

  Formatador.display_line('Welcome to fog interactive!')
  Formatador.display_line(":#{Fog.credential} provides #{providers}")
  providers = Fog.providers

  catch(:IRB_EXIT) { @irb.eval_input }

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-0.7.2 bin/fog
fog-0.7.1 bin/fog
fog-0.7.0 bin/fog
fog-0.6.0 bin/fog