Sha256: a0325fdb591079e4326a94fdcb1ddc3dac2d106b949529c6fd17d1a7888724a9

Contents?: true

Size: 943 Bytes

Versions: 7

Compression:

Stored size: 943 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
          Formatador.display_line("[yellow][WARN] Bluebox[:compute] is deprecated, use Compute[:bluebox] instead[/]")
          Fog::Compute.new(:provider => 'Bluebox')
        when :dns
          Formatador.display_line("[yellow][WARN] Bluebox[:storage] is deprecated, use Storage[:bluebox] instead[/]")
          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

7 entries across 7 versions & 3 rubygems

Version Path
brightbox-cli-0.13.1 lib/brightbox-cli/vendor/fog/lib/fog/bin/bluebox.rb
brightbox-cli-0.13.0 lib/brightbox-cli/vendor/fog/lib/fog/bin/bluebox.rb
fog-0.11.0 lib/fog/bin/bluebox.rb
fog-0.10.0 lib/fog/bin/bluebox.rb
fog4encbs-0.9.0.1 lib/fog/bin/bluebox.rb
fog4encbs-0.9.0 lib/fog/bin/bluebox.rb
fog-0.9.0 lib/fog/bin/bluebox.rb