Sha256: 55df559c11edf67055ebc681f4dcfc4f2c217cc71191ad15a81175deaa30ac1e

Contents?: true

Size: 616 Bytes

Versions: 31

Compression:

Stored size: 616 Bytes

Contents

class Slicehost < Fog::Bin
  class << self

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        when :compute
          Fog::Slicehost::Compute.new
        when :slices
          location = caller.first
          warning = "[yellow][WARN] Slicehost[:blocks] is deprecated, use Bluebox[:compute] instead[/]"
          warning << " [light_black](" << location << ")[/] "
          Formatador.display_line(warning)
          Fog::Slicehost::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/slicehost/bin.rb
fog-0.3.9 lib/fog/slicehost/bin.rb
fog-0.3.8 lib/fog/slicehost/bin.rb
fog-0.3.7 lib/fog/slicehost/bin.rb
fog-0.3.6 lib/fog/slicehost/bin.rb
fog-0.3.5 lib/fog/slicehost/bin.rb
fog-0.3.4 lib/fog/slicehost/bin.rb
fog-0.3.3 lib/fog/slicehost/bin.rb
fog-0.3.2 lib/fog/slicehost/bin.rb
fog-0.3.1 lib/fog/slicehost/bin.rb
fog-0.3.0 lib/fog/slicehost/bin.rb