mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
32 lines
593 B
Ruby
32 lines
593 B
Ruby
![]() |
module Fog
|
||
|
module Parsers
|
||
|
module Voxel
|
||
|
module Compute
|
||
|
|
||
|
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
|