mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
25 lines
362 B
Ruby
25 lines
362 B
Ruby
module Fog
|
|
module Parsers
|
|
class Base < Nokogiri::XML::SAX::Document
|
|
|
|
attr_reader :response
|
|
|
|
def initialize
|
|
reset
|
|
end
|
|
|
|
def reset
|
|
@response = {}
|
|
end
|
|
|
|
def characters(string)
|
|
@value << string.strip
|
|
end
|
|
|
|
def start_element(name, attrs = [])
|
|
@value = ''
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|