mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
30 lines
563 B
Ruby
30 lines
563 B
Ruby
module Fog
|
|
module Parsers
|
|
module Slicehost
|
|
module Compute
|
|
|
|
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
|
|
end
|