Class: Zonesync::Parser::NS
Instance Attribute Summary collapse
-
#domainname ⇒ Object
(also: #nameserver, #rdata)
Returns the value of attribute domainname.
Attributes inherited from Record
Instance Method Summary collapse
-
#initialize(vars, zonefile_record) ⇒ NS
constructor
A new instance of NS.
Methods inherited from Record
Constructor Details
#initialize(vars, zonefile_record) ⇒ NS
Returns a new instance of NS.
242 243 244 245 246 247 248 249 250 251 252 |
# File 'lib/zonesync/parser.rb', line 242 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.domainname = qualify_host(zonefile_record.nameserver.to_s) self.comment = zonefile_record.comment&.to_s end end |
Instance Attribute Details
#domainname ⇒ Object Also known as: nameserver, rdata
Returns the value of attribute domainname.
240 241 242 |
# File 'lib/zonesync/parser.rb', line 240 def domainname @domainname end |