Class: Zonesync::Zonefile::TXT
- Defined in:
- lib/zonesync/zonefile.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
-
#host ⇒ Object
Returns the value of attribute host.
Attributes inherited from Record
Instance Method Summary collapse
-
#initialize(vars, zonefile_record) ⇒ TXT
constructor
A new instance of TXT.
Methods inherited from Record
Constructor Details
#initialize(vars, zonefile_record) ⇒ TXT
Returns a new instance of TXT.
302 303 304 305 306 307 308 309 310 311 312 |
# File 'lib/zonesync/zonefile.rb', line 302 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
Returns the value of attribute data.
300 301 302 |
# File 'lib/zonesync/zonefile.rb', line 300 def data @data end |
#host ⇒ Object
Returns the value of attribute host.
300 301 302 |
# File 'lib/zonesync/zonefile.rb', line 300 def host @host end |