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/ec2/parsers.rb
2009-06-30 09:43:39 -07:00

22 lines
No EOL
361 B
Ruby

require File.dirname(__FILE__) + '/../../parser'
module Fog
module Parsers
module AWS
module EC2
class AllocateAddress < Fog::Parsers::Base
def end_element(name)
case name
when 'publicIp'
@response[:public_ip] = @value
end
end
end
end
end
end
end