mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
38 lines
650 B
Ruby
38 lines
650 B
Ruby
require 'fog/collection'
|
|
require 'fog/bluebox/models/flavor'
|
|
|
|
module Fog
|
|
module Bluebox
|
|
|
|
class Mock
|
|
def flavors
|
|
Fog::Bluebox::Flavors.new(:connection => self)
|
|
end
|
|
end
|
|
|
|
class Real
|
|
def flavors
|
|
Fog::Bluebox::Flavors.new(:connection => self)
|
|
end
|
|
end
|
|
|
|
class Flavors < Fog::Collection
|
|
|
|
model Fog::Bluebox::Flavor
|
|
|
|
def all
|
|
data = connection.get_products.body
|
|
load(data)
|
|
end
|
|
|
|
def get(product_id)
|
|
response = connection.get_product(product_id)
|
|
new(response.body)
|
|
rescue Excon::Errors::NotFound
|
|
nil
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|