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/zerigo/parsers/compute/count_zones.rb
Athir Nuaimi e081fac0b5 added support for 4 more zerigo dns methods: count_zones, get_zone, get_zone_stats, create_zone
items added but not yet tested.  Will continue to add the rest of the methods and then do a big testing cycle
2010-12-12 09:51:52 -05:00

24 lines
372 B
Ruby

module Fog
module Parsers
module Zerigo
module Compute
class CountZones < Fog::Parsers::Base
def reset
@response = {}
end
def end_element(name)
case name
when 'count'
@response[name] = @value.to_i
end
end
end
end
end
end
end