Class: DNS::Zonefile::TXT

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

Direct Known Subclasses

SPF

Instance Attribute Summary collapse

Attributes inherited from Record

#klass, #ttl

Instance Method Summary collapse

Methods inherited from Record

writer_for_ttl

Constructor Details

#initialize(vars, zonefile_record) ⇒ TXT

Returns a new instance of TXT.



292
293
294
295
296
297
298
299
300
301
# File 'lib/dns/zonefile.rb', line 292

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
  end
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



290
291
292
# File 'lib/dns/zonefile.rb', line 290

def data
  @data
end

#hostObject

Returns the value of attribute host.



290
291
292
# File 'lib/dns/zonefile.rb', line 290

def host
  @host
end