Sha256: bae4e2fd847ca57817669f1a9817cdfe5c9f2e8694fff1a238556cb926d088cb

Contents?: true

Size: 644 Bytes

Versions: 31

Compression:

Stored size: 644 Bytes

Contents

class Bluebox < Fog::Bin
  class << self

      def [](service)
        @@connections ||= Hash.new do |hash, key|
          hash[key] = case key
          when :blocks
            location = caller.first
            warning = "[yellow][WARN] Bluebox[:blocks] is deprecated, use Bluebox[:compute] instead[/]"
            warning << " [light_black](" << location << ")[/] "
            Formatador.display_line(warning)
            Fog::Bluebox::Compute.new
          when :compute
            Fog::Bluebox::Compute.new
          end
        end
        @@connections[service]
      end

      def services
        [:compute]
      end

  end
end

Version data entries

31 entries across 31 versions & 2 rubygems

Version Path
fog-0.3.10 lib/fog/bluebox/bin.rb
fog-0.3.9 lib/fog/bluebox/bin.rb
fog-0.3.8 lib/fog/bluebox/bin.rb
fog-0.3.7 lib/fog/bluebox/bin.rb
fog-0.3.6 lib/fog/bluebox/bin.rb
fog-0.3.5 lib/fog/bluebox/bin.rb
fog-0.3.4 lib/fog/bluebox/bin.rb
fog-0.3.3 lib/fog/bluebox/bin.rb
fog-0.3.2 lib/fog/bluebox/bin.rb
fog-0.3.1 lib/fog/bluebox/bin.rb
fog-0.3.0 lib/fog/bluebox/bin.rb