Sha256: 1c9a2f9d66b601dc2447e81be7e649bfc1046c5b5729cd810a69b54fedd70c63

Contents?: true

Size: 917 Bytes

Versions: 37

Compression:

Stored size: 917 Bytes

Contents

class Bluebox < Fog::Bin
  class << self

    def class_for(key)
      case key
      when :compute
        Fog::Compute::Bluebox
      when :dns
        Fog::DNS::Bluebox
      else
        raise ArgumentError, "Unsupported #{self} service: #{key}"
      end
    end

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        when :compute
          Fog::Logger.warning("Bluebox[:compute] is not recommended, use Compute[:bluebox] for portability")
          Fog::Compute.new(:provider => 'Bluebox')
        when :dns
          Fog::Logger.warning("Bluebox[:dns] is not recommended, use DNS[:bluebox] for portability")
          Fog::DNS.new(:provider => 'Bluebox')
        else
          raise ArgumentError, "Unrecognized service: #{service}"
        end
      end
      @@connections[service]
    end

    def services
      Fog::Bluebox.services
    end

  end
end

Version data entries

37 entries across 37 versions & 13 rubygems

Version Path
fog-nirvanix-1.8.2 lib/fog/bin/bluebox.rb
fog-nirvanix-1.8.1 lib/fog/bin/bluebox.rb
fog-parser-fix-1.6.1 lib/fog/bin/bluebox.rb
fog-test-again-1.6.0 lib/fog/bin/bluebox.rb
fog-parser-fix-1.6.0 lib/fog/bin/bluebox.rb
fog-1.9.0 lib/fog/bin/bluebox.rb
fog-maestrodev-1.8.0.20130114204828 lib/fog/bin/bluebox.rb
fog-maestrodev-1.8.0.20130111070250 lib/fog/bin/bluebox.rb
fog-maestrodev-1.8.0.20130109172219 lib/fog/bin/bluebox.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/bin/bluebox.rb
fog-sgonyea-1.8.1 lib/fog/bin/bluebox.rb
fog-1.8.0 lib/fog/bin/bluebox.rb
fog-maestrodev-1.7.0.20121114190951 lib/fog/bin/bluebox.rb
fog-1.7.0 lib/fog/bin/bluebox.rb
fog-1.6.0 lib/fog/bin/bluebox.rb
fog-1.5.0 lib/fog/bin/bluebox.rb
rackspace-fog-1.4.2 lib/rackspace-fog/bin/bluebox.rb
fog-1.4.0 lib/fog/bin/bluebox.rb
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/bin/bluebox.rb
michiels-fog-1.3.1 lib/fog/bin/bluebox.rb