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/aws/parsers/sns/publish.rb

25 lines
381 B
Ruby
Raw Normal View History

2011-02-03 19:10:39 -05:00
module Fog
module Parsers
module AWS
module SNS
class Publish < Fog::Parsers::Base
def reset
@response = {}
end
def end_element(name)
case name
when 'MessageId', 'RequestId'
2011-07-19 18:53:26 -04:00
@response[name] = @value.rstrip
2011-02-03 19:10:39 -05:00
end
end
end
end
end
end
end