fog--fog/tests/bluebox/helper.rb

26 lines
487 B
Ruby

module Bluebox
def self.[](service)
@@connections ||= Hash.new do |hash, key|
credentials = Fog.credentials.reject do |k,v|
![:bluebox_api_key, :bluebox_customer_id].include?(k)
end
hash[key] = case key
when :blocks
Fog::Bluebox.new(credentials)
end
end
@@connections[service]
end
module Formats
PRODUCT = {
'cost' => Float,
'description' => String,
'id' => String
}
end
end