Class: Zonesync::Parser::TXT

Inherits:
Record
  • Object
show all
Defined in:
lib/zonesync/parser.rb

Direct Known Subclasses

SPF

Instance Attribute Summary collapse

Attributes inherited from Record

#comment, #host, #klass, #ttl

Instance Method Summary collapse

Methods inherited from Record

#type

Constructor Details

#initialize(vars, zonefile_record) ⇒ TXT

Returns a new instance of TXT.



319
320
321
322
323
324
325
326
327
328
329
# File 'lib/zonesync/parser.rb', line 319

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

#dataObject Also known as: rdata

Returns the value of attribute data.



317
318
319
# File 'lib/zonesync/parser.rb', line 317

def data
  @data
end