mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
27 lines
518 B
Ruby
27 lines
518 B
Ruby
|
module Fog
|
||
|
module Parsers
|
||
|
module Terremark
|
||
|
|
||
|
class GetOrganizations < Fog::Parsers::Base
|
||
|
|
||
|
def reset
|
||
|
@response = { 'OrgList' => [] }
|
||
|
end
|
||
|
|
||
|
def start_element(name, attributes)
|
||
|
@value = ''
|
||
|
if name == 'Org'
|
||
|
organization = {}
|
||
|
until attributes.empty?
|
||
|
organization[attributes.shift] = attributes.shift
|
||
|
end
|
||
|
@response['OrgList'] << organization
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|