Class: Fog::Parsers::DNS::Slicehost::GetRecord
- Inherits:
-
Base
- Object
- Nokogiri::XML::SAX::Document
- Base
- Fog::Parsers::DNS::Slicehost::GetRecord
- Defined in:
- lib/fog/slicehost/parsers/dns/get_record.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#attr_value, #characters, #initialize, #start_element, #value
Constructor Details
This class inherits a constructor from Fog::Parsers::Base
Instance Method Details
#end_element(name) ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/fog/slicehost/parsers/dns/get_record.rb', line 13 def end_element(name) case name when 'id' @record["id"] = value.to_i when 'zone-id' @record["zone_id"] = value.to_i when 'record-type' @record["record_type"] = value when 'ttl' @record[name] = value.to_i when 'data' @record["value"] = value when 'name', 'active', 'aux' @record[name] = value when 'record' @response = @record @record = {} end end |
#reset ⇒ Object
8 9 10 11 |
# File 'lib/fog/slicehost/parsers/dns/get_record.rb', line 8 def reset @record = {} @response = { } end |