1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/compute/models/bluebox/flavors.rb
2011-01-07 16:52:09 -08:00

28 lines
518 B
Ruby

require 'fog/core/collection'
require 'fog/bluebox/models/compute/flavor'
module Fog
module Bluebox
class Compute
class Flavors < Fog::Collection
model Fog::Bluebox::Compute::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 Fog::Bluebox::Compute::NotFound
nil
end
end
end
end
end