# File lib/fog/terremark/parsers/shared/get_catalog.rb, line 26 def end_element(name) if name == 'Description' @response[name] = value end end
# File lib/fog/terremark/parsers/shared/get_catalog.rb, line 8 def reset @response = { 'CatalogItems' => [] } end
# File lib/fog/terremark/parsers/shared/get_catalog.rb, line 12 def start_element(name, attributes) super case name when 'CatalogItem' catalog_item = extract_attributes(attributes) catalog_item["id"] = catalog_item["href"].split('/').last @response['CatalogItems'] << catalog_item when 'Catalog' catalog = extract_attributes(attributes) @response['name'] = catalog['name'] end end
Generated with the Darkfish Rdoc Generator 2.