Class: Zonesync::Zonefile::A
Direct Known Subclasses
Instance Attribute Summary collapse
-
#address ⇒ Object
Returns the value of attribute address.
-
#host ⇒ Object
Returns the value of attribute host.
Attributes inherited from Record
Instance Method Summary collapse
-
#initialize(vars, zonefile_record) ⇒ A
constructor
A new instance of A.
Methods inherited from Record
Constructor Details
#initialize(vars, zonefile_record) ⇒ A
Returns a new instance of A.
135 136 137 138 139 140 141 142 143 144 145 |
# File 'lib/zonesync/zonefile.rb', line 135 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.address = zonefile_record.ip_address.to_s self.comment = zonefile_record.comment&.to_s end end |
Instance Attribute Details
#address ⇒ Object
Returns the value of attribute address.
133 134 135 |
# File 'lib/zonesync/zonefile.rb', line 133 def address @address end |
#host ⇒ Object
Returns the value of attribute host.
133 134 135 |
# File 'lib/zonesync/zonefile.rb', line 133 def host @host end |