Sha256: dda3ce54161629fe5289c8376f4cc7dfe0a0ba98f893001c4d39f56c11b9e3d9

Contents?: true

Size: 1.32 KB

Versions: 18

Compression:

Stored size: 1.32 KB

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']
if Fog.credentials.empty?
  begin
    Fog::Errors.missing_credentials
  rescue Fog::Errors::LoadError => error
    abort error.message
  end
end

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

  result = instance_eval(ARGV[1..-1].join(' '))
  puts(Fog::JSON.encode(result))

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)

  trap 'INT' do
    @irb.signal_handle
  end

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

  # FIXME: hacks until we can `include Fog` in bin
  CDN     = Fog::CDN
  Compute = Fog::Compute
  DNS     = Fog::DNS
  Storage = Fog::Storage

  catch(:IRB_EXIT) { @irb.eval_input }

end

Version data entries

18 entries across 18 versions & 7 rubygems

Version Path
r5_fog-1.10.0 bin/fog
gapinc-fog-1.12.1.1 bin/fog
gapinc-fog-1.12.1a bin/fog
gapinc-fog-1.12.1 bin/fog
fog-1.12.1 bin/fog
fog-1.12.0 bin/fog
hpfog-0.0.20 bin/fog
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/bin/fog
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/bin/fog
fog-1.11.1 bin/fog
fog-1.11.0 bin/fog
fog-1.10.1 bin/fog
fog-test-me-1.10.0 bin/fog
fog-1.10.0 bin/fog
fog-1.9.0 bin/fog
fog-maestrodev-1.8.0.20130114204828 bin/fog
fog-maestrodev-1.8.0.20130111070250 bin/fog
fog-maestrodev-1.8.0.20130109172219 bin/fog