Sha256: 19c87bba083a8e69a14ad86784a745f769931efbd05c32df194228ecaf18dbae

Contents?: true

Size: 595 Bytes

Versions: 64

Compression:

Stored size: 595 Bytes

Contents

module Fog
  module Volume

    def self.[](provider)
      self.new(:provider => provider)
    end

    def self.new(attributes)
      attributes = attributes.dup # Prevent delete from having side effects
      provider = attributes.delete(:provider).to_s.downcase.to_sym
      if self.providers.include?(provider)
        require "fog/#{provider}/volume"
        return Fog::Volume.const_get(Fog.providers[provider]).new(attributes)
      end

      raise ArgumentError.new("#{provider} has no identity service")
    end

    def self.providers
      Fog.services[:volume]
    end

  end
end

Version data entries

64 entries across 64 versions & 7 rubygems

Version Path
fog-maestrodev-1.18.0.20131219022322 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131205181604 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/volume.rb
gapinc-fog-1.12.1.2.1 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/volume.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/volume.rb