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/voxel/parsers/compute/basic.rb

31 lines
593 B
Ruby

module Fog
module Parsers
module Compute
module Voxel
class Basic < Fog::Parsers::Base
def reset
@response = {}
end
def start_element(name, attrs = [])
super
case name
when 'err'
@response['err'] = {
'code' => attr_value('code', attrs),
'msg' => attr_value('msg', attrs)
}
when 'rsp'
@response['stat'] = attr_value('stat', attrs)
end
end
end
end
end
end
end