Sha256: c87bb4af04383a2e036e3024df574cdc7ce117b258ee06d38df68fc60436b9e7

Contents?: true

Size: 702 Bytes

Versions: 96

Compression:

Stored size: 702 Bytes

Contents

class Local < Fog::Bin
  class << self

    def class_for(key)
      case key
      when :storage
        Fog::Storage::Local
      else 
        raise ArgumentError, "Unsupported #{self} service: #{key}"
      end
    end

    def [](service)
      @@connections ||= Hash.new do |hash, key|
        hash[key] = case key
        when :storage
          Fog::Logger.warning("Local[:storage] is not recommended, use Storage[:local] for portability")
          Fog::Storage.new(:provider => 'Local')
        else
          raise ArgumentError, "Unrecognized service: #{key.inspect}"
        end
      end
      @@connections[service]
    end

    def services
      Fog::Local.services
    end

  end
end

Version data entries

96 entries across 96 versions & 17 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/bin/local.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/bin/local.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/bin/local.rb
fog-1.20.0 lib/fog/bin/local.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/bin/local.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/bin/local.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/bin/local.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/bin/local.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/bin/local.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/bin/local.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/bin/local.rb
fog-1.19.0 lib/fog/bin/local.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/bin/local.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/bin/local.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/bin/local.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/bin/local.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/bin/local.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/bin/local.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/bin/local.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/bin/local.rb