Class: DNS::Zonefile::NS

Inherits:
Record
  • Object
show all
Defined in:
lib/dns/zonefile.rb

Instance Attribute Summary collapse

Attributes inherited from Record

#klass, #ttl

Instance Method Summary collapse

Methods inherited from Record

inheriting_writer_for_at, writer_for_at, writer_for_ttl

Constructor Details

#initialize(vars, zonefile_record) ⇒ NS

Returns a new instance of NS.



231
232
233
234
235
236
237
238
239
240
# File 'lib/dns/zonefile.rb', line 231

def initialize(vars, zonefile_record)
	@vars = vars
	if zonefile_record
	  self.host         = zonefile_record.host.to_s
	  @vars[:last_host] = self.host
	  self.ttl          = zonefile_record.ttl.to_i
	  self.klass        = zonefile_record.klass.to_s
	  self.domainname   = zonefile_record.nameserver.to_s
	end
end

Instance Attribute Details

#domainnameObject Also known as: nameserver

Returns the value of attribute domainname.



226
227
228
# File 'lib/dns/zonefile.rb', line 226

def domainname
  @domainname
end

#hostObject

Returns the value of attribute host.



226
227
228
# File 'lib/dns/zonefile.rb', line 226

def host
  @host
end