Sha256: 81c4ff69b0940d00ca35c413bdfa86fab2955effd26758fd6d1fb2588eb1e276

Contents?: true

Size: 957 Bytes

Versions: 39

Compression:

Stored size: 957 Bytes

Contents

class Bluebox < Fog::Bin
  class << self
    def class_for(key)
      case key
      when :compute
        Fog::Compute::Bluebox
      when :dns
        Fog::DNS::Bluebox
      when :blb
        Fog::Bluebox::BLB
      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

39 entries across 37 versions & 5 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-1.42.1/lib/fog/bin/bluebox.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-1.42.1/lib/fog/bin/bluebox.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-1.42.1/lib/fog/bin/bluebox.rb
fog-1.42.1 lib/fog/bin/bluebox.rb
fog-2.0.0 lib/fog/bin/bluebox.rb
fog-1.42.0 lib/fog/bin/bluebox.rb
fog-1.41.0 lib/fog/bin/bluebox.rb
fog-1.40.0 lib/fog/bin/bluebox.rb
fog-1.39.0 lib/fog/bin/bluebox.rb
fog-1.38.0 lib/fog/bin/bluebox.rb
fog-1.37.0 lib/fog/bin/bluebox.rb
fog-1.36.0 lib/fog/bin/bluebox.rb
fog-1.35.0 lib/fog/bin/bluebox.rb
fog-2.0.0.pre.0 lib/fog/bin/bluebox.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/bin/bluebox.rb
fog-1.34.0 lib/fog/bin/bluebox.rb
fog-1.33.0 lib/fog/bin/bluebox.rb
fog-1.32.0 lib/fog/bin/bluebox.rb
fog-1.31.0 lib/fog/bin/bluebox.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/bin/bluebox.rb