mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
23 lines
366 B
Ruby
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
|