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/voxel/images.rb
2011-02-24 16:40:12 -08:00

30 lines
533 B
Ruby

require 'fog/core/collection'
require 'fog/compute/models/voxel/image'
module Fog
module Voxel
class Compute
class Images < Fog::Collection
model Fog::Voxel::Compute::Image
def all
data = connection.images_list.body['images']
load(data)
end
def get(image_id)
data = connection.images_list(image_id).body['images']
if data.empty?
nil
else
new(data.first)
end
end
end
end
end
end