fog--fog/lib/fog/terremark/parsers/get_organizations.rb

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