Sha256: 5f2b6ac372b959903f90521d1b6ccc4b912bc1409089617233a800d3433502b6

Contents?: true

Size: 536 Bytes

Versions: 56

Compression:

Stored size: 536 Bytes

Contents

module Fog
  module Billing

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

    def self.new(attributes)
      attributes = attributes.dup
      provider = attributes.delete(:provider).to_s.downcase.to_sym
      if provider == :stormondemand
        require 'fog/storm_on_demand/billing'
        Fog::Billing::StormOnDemand.new(attributes)
      else
        raise ArgumentError.new("#{provider} has no billing service")
      end
    end

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

Version data entries

56 entries across 56 versions & 4 rubygems

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