Class: Zonesync::Parser::NAPTR
Instance Attribute Summary collapse
-
#data ⇒ Object
(also: #rdata)
Returns the value of attribute data.
Attributes inherited from Record
Instance Method Summary collapse
-
#initialize(vars, zonefile_record) ⇒ NAPTR
constructor
A new instance of NAPTR.
Methods inherited from Record
Constructor Details
#initialize(vars, zonefile_record) ⇒ NAPTR
Returns a new instance of NAPTR.
224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/zonesync/parser.rb', line 224 def initialize(vars, zonefile_record) @vars = vars if zonefile_record self.host = qualify_host(zonefile_record.host.to_s) @vars[:last_host] = host self.ttl = zonefile_record.ttl.to_i self.klass = zonefile_record.klass.to_s self.data = zonefile_record.data.to_s self.comment = zonefile_record.comment&.to_s end end |
Instance Attribute Details
#data ⇒ Object Also known as: rdata
Returns the value of attribute data.
222 223 224 |
# File 'lib/zonesync/parser.rb', line 222 def data @data end |