Sha256: e3ca34ab8ec3b8919378ab221660b88305f28f01a3833466ecda8cb28fe9cb6e

Contents?: true

Size: 1.76 KB

Versions: 30

Compression:

Stored size: 1.76 KB

Contents

#!/usr/bin/env ruby

require File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib', 'fog'))
require 'optparse'
require 'irb'
require 'yaml'

options = OptionParser.new do |opts|
  opts.banner = 'usage: fog [options] CREDENTIAL'

  opts.on('-C', '--credentials-path FILE', 'Path to the credentials file') do |file|
    Fog.credentials_path = file
  end

  opts.on_tail('-v', '--version', 'Prints the version') do
    puts Fog::VERSION
    exit
  end

  opts.on_tail('-h', '--help', 'Prints this message') do
    puts opts
    exit
  end
end
options.parse!

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

  Fog::Formatador.display_line('Welcome to fog interactive!')
  Fog::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

30 entries across 28 versions & 6 rubygems

Version Path
fog-2.3.0 bin/fog
fog-ifeel-2.2.0 bin/fog
fog-2.2.0 bin/fog
fog-2.1.0 bin/fog
fog-oneandone-1.2 bin/fog
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-1.42.1/bin/fog
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-1.42.1/bin/fog
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-1.42.1/bin/fog
fog-1.42.1 bin/fog
fog-2.0.0 bin/fog
fog-1.42.0 bin/fog
fog-1.41.0 bin/fog
fog-1.40.0 bin/fog
fog-1.39.0 bin/fog
fog-digitalocean-0.2.0 bin/fog
fog-oneandone-1.0 bin/fog
fog-digitalocean-0.1.0 bin/fog
fog-1.38.0 bin/fog
fog-1.37.0 bin/fog
fog-1.36.0 bin/fog