Sha256: 41f8f2258e5412e00ddf921e9a3bf877bc2256074e76fa4527c4781dd9bcd845

Contents?: true

Size: 731 Bytes

Versions: 100

Compression:

Stored size: 731 Bytes

Contents

module Slicehost
  class << self
    if Fog.credentials[:slicehost_password]

      def initialized?
        true
      end

      def [](service)
        @@connections ||= Hash.new do |hash, key|
          credentials = Fog.credentials.reject do |k,v|
            ![:slicehost_password].include?(k)
          end
          hash[key] = case key
          when :slices
            Fog::Slicehost.new(credentials)
          end
        end
        @@connections[service]
      end

      def flavors
        self[:slices].flavors
      end

      def images
        self[:slices].images
      end

      def servers
        self[:slices].servers
      end

    else

      def initialized?
        false
      end

    end
  end
end

Version data entries

100 entries across 100 versions & 2 rubygems

Version Path
fog-0.2.10 lib/fog/slicehost/bin.rb
fog-0.2.9 lib/fog/slicehost/bin.rb
fog-0.2.8 lib/fog/slicehost/bin.rb
fog-0.2.7 lib/fog/slicehost/bin.rb
fog-0.2.6 lib/fog/slicehost/bin.rb
fog-0.2.5 lib/fog/slicehost/bin.rb
fog-0.2.4 lib/fog/slicehost/bin.rb
fog-0.2.3 lib/fog/slicehost/bin.rb
fog-0.2.2 lib/fog/slicehost/bin.rb
fog-0.2.1 lib/fog/slicehost/bin.rb
fog-0.2.0 lib/fog/slicehost/bin.rb
fog-0.1.10 lib/fog/slicehost/bin.rb
fog-0.1.9 lib/fog/slicehost/bin.rb
fog-0.1.8 lib/fog/slicehost/bin.rb
fog-0.1.7 lib/fog/slicehost/bin.rb
fog-0.1.6 lib/fog/slicehost/bin.rb
fog-0.1.5 lib/fog/slicehost/bin.rb
fog-0.1.4 lib/fog/slicehost/bin.rb
fog-0.1.3 lib/fog/slicehost/bin.rb
fog-0.1.2 lib/fog/slicehost/bin.rb