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.1.1 lib/fog/slicehost/bin.rb
fog-0.1.0 lib/fog/slicehost/bin.rb
fog-0.0.100 lib/fog/slicehost/bin.rb
fog-0.0.99 lib/fog/slicehost/bin.rb
fog-0.0.98 lib/fog/slicehost/bin.rb
fog-0.0.97 lib/fog/slicehost/bin.rb
fog-0.0.96 lib/fog/slicehost/bin.rb
fog-0.0.95 lib/fog/slicehost/bin.rb
fog-0.0.94 lib/fog/slicehost/bin.rb
fog-0.0.93 lib/fog/slicehost/bin.rb
fog-0.0.92 lib/fog/slicehost/bin.rb
fog-0.0.91 lib/fog/slicehost/bin.rb
fog-0.0.90 lib/fog/slicehost/bin.rb
fog-0.0.89 lib/fog/slicehost/bin.rb
fog-0.0.88 lib/fog/slicehost/bin.rb
fog-0.0.87 lib/fog/slicehost/bin.rb
fog-0.0.86 lib/fog/slicehost/bin.rb
fog-0.0.85 lib/fog/slicehost/bin.rb
fog-0.0.84 lib/fog/slicehost/bin.rb
fog-0.0.83 lib/fog/slicehost/bin.rb