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/terremark/models/shared/image.rb
2012-04-28 22:35:06 +05:30

22 lines
282 B
Ruby

require 'fog/core/model'
module Fog
module Terremark
module Shared
class Image < Fog::Model
identity :id
attribute :name
end
private
def href=(new_href)
self.id = new_href.split('/').last.to_i
end
end
end
end