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/slicehost/parsers/get_images.rb

28 lines
498 B
Ruby

module Fog
module Parsers
module Slicehost
class GetImages < Fog::Parsers::Base
def reset
@image = {}
@response = { 'images' => [] }
end
def end_element(name)
case name
when 'id'
@image[name] = @value.to_i
when 'image'
@response['images'] << @image
@image = {}
when 'name'
@image[name] = @value
end
end
end
end
end
end