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/storm_on_demand/models/compute/templates.rb
2013-01-07 21:01:21 +00:00

21 lines
365 B
Ruby

require 'fog/core/collection'
require 'fog/storm_on_demand/models/compute/template'
module Fog
module Compute
class StormOnDemand
class Templates < Fog::Collection
model Fog::Compute::StormOnDemand::Template
def all
data = service.list_templates.body['items']
load(data)
end
end
end
end
end