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-1.18.0 lib/fog/billing.rb
fog-1.17.0 lib/fog/billing.rb
fog-1.16.0 lib/fog/billing.rb
fog-maestrodev-1.15.0.20130927082724 lib/fog/billing.rb
fog-maestrodev-1.15.0.20130829165835 lib/fog/billing.rb
fog-1.15.0 lib/fog/billing.rb
gapinc-fog-1.14.0 lib/fog/billing.rb
fog-maestrodev-1.14.0.20130806165225 lib/fog/billing.rb
fog-1.14.0 lib/fog/billing.rb
fog-1.13.0 lib/fog/billing.rb
gapinc-fog-1.12.1.2 lib/fog/billing.rb
gapinc-fog-1.12.1.1 lib/fog/billing.rb
gapinc-fog-1.12.1a lib/fog/billing.rb
gapinc-fog-1.12.1 lib/fog/billing.rb
fog-1.12.1 lib/fog/billing.rb
fog-1.12.0 lib/fog/billing.rb