Sha256: 1ca47ded7bd511a80465337aadf44755415636478285126157ad9fe5f8e0ff91

Contents?: true

Size: 1.23 KB

Versions: 23

Compression:

Stored size: 1.23 KB

Contents

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

require 'fog/core/bin'

providers = Fog.providers.map{|provider| provider.to_s}
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.to_s} credentials provide #{providers}")
  providers = Fog.providers
  Fog.modules.each do |_module_|
    if _module_.respond_to?(:startup_notice)
      _module_.send(:startup_notice)
    end
  end

  catch(:IRB_EXIT) { @irb.eval_input }

end

Version data entries

23 entries across 23 versions & 2 rubygems

Version Path
fog-0.3.31 bin/fog
fog-0.3.30 bin/fog
fog-0.3.29 bin/fog
fog-0.3.28 bin/fog
fog-0.3.27 bin/fog
fog-0.3.26 bin/fog
fog-0.3.25 bin/fog
fog-0.3.24 bin/fog
bbcloud-0.8.1 lib/bbcloud/vendor/fog-0.3.23/bin/fog
fog-0.3.23 bin/fog
fog-0.3.22 bin/fog
fog-0.3.21 bin/fog
fog-0.3.20 bin/fog
fog-0.3.19 bin/fog
fog-0.3.18 bin/fog
fog-0.3.17 bin/fog
fog-0.3.16 bin/fog
fog-0.3.15 bin/fog
fog-0.3.14 bin/fog
fog-0.3.13 bin/fog