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.30 lib/fog/slicehost/bin.rb
fog-0.2.28 lib/fog/slicehost/bin.rb
fog-0.2.27 lib/fog/slicehost/bin.rb
fog-0.2.26 lib/fog/slicehost/bin.rb
fog-0.2.25 lib/fog/slicehost/bin.rb
fog-0.2.24 lib/fog/slicehost/bin.rb
tecnh-fog-0.2.23.vpc lib/fog/slicehost/bin.rb
fog-0.2.23 lib/fog/slicehost/bin.rb
fog-0.2.22 lib/fog/slicehost/bin.rb
fog-0.2.21 lib/fog/slicehost/bin.rb
fog-0.2.20 lib/fog/slicehost/bin.rb
fog-0.2.19 lib/fog/slicehost/bin.rb
fog-0.2.18 lib/fog/slicehost/bin.rb
fog-0.2.17 lib/fog/slicehost/bin.rb
fog-0.2.16 lib/fog/slicehost/bin.rb
fog-0.2.15 lib/fog/slicehost/bin.rb
fog-0.2.14 lib/fog/slicehost/bin.rb
fog-0.2.13 lib/fog/slicehost/bin.rb
fog-0.2.12 lib/fog/slicehost/bin.rb
fog-0.2.11 lib/fog/slicehost/bin.rb