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/hp/models/storage/meta_parent.rb

23 lines
366 B
Ruby

module Fog
module Storage
class HP
module MetaParent
def parent
@parent
end
def parent=(new_parent)
@parent = new_parent
end
def metas_to_hash(metas)
hash = {}
metas.each { |meta| hash.store(meta.key, meta.value) }
hash
end
end
end
end
end