lib/fog/parsers/terremark/network.rb in fog-terremark-0.0.4 vs lib/fog/parsers/terremark/network.rb in fog-terremark-0.1.0

- old
+ new

@@ -9,27 +9,27 @@ end def start_element(name,attributes=[]) super case name - when "Network" - @response = extract_attributes(attributes) - if @response.key?("name") - @response["subnet"] = @response["name"] - end - if @response.key?("href") - @response["id"] = @response["href"].split("/").last - end - when "Link" - link = extract_attributes(attributes) - @response["links"] << link + when "Network" + @response = extract_attributes(attributes) + if @response.key?("name") + @response["subnet"] = @response["name"] + end + if @response.key?("href") + @response["id"] = @response["href"].split("/").last + end + when "Link" + link = extract_attributes(attributes) + @response["links"] << link end end def end_element(name) case name - when "Gateway", "Netmask", "FenceMode" - @response[name.downcase] = value + when "Gateway", "Netmask", "FenceMode" + @response[name.downcase] = value end end end end end