Class: Zonesync::Zonefile::MX
Instance Attribute Summary collapse
-
#domainname ⇒ Object
(also: #exchange, #exchanger)
Returns the value of attribute domainname.
-
#host ⇒ Object
Returns the value of attribute host.
-
#priority ⇒ Object
Returns the value of attribute priority.
Attributes inherited from Record
Instance Method Summary collapse
-
#initialize(vars, zonefile_record) ⇒ MX
constructor
A new instance of MX.
Methods inherited from Record
Constructor Details
#initialize(vars, zonefile_record) ⇒ MX
Returns a new instance of MX.
191 192 193 194 195 196 197 198 199 200 201 202 |
# File 'lib/zonesync/zonefile.rb', line 191 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.priority = zonefile_record.priority.to_i self.domainname = qualify_host(zonefile_record.exchanger.to_s) self.comment = zonefile_record.comment&.to_s end end |
Instance Attribute Details
#domainname ⇒ Object Also known as: exchange, exchanger
Returns the value of attribute domainname.
189 190 191 |
# File 'lib/zonesync/zonefile.rb', line 189 def domainname @domainname end |
#host ⇒ Object
Returns the value of attribute host.
189 190 191 |
# File 'lib/zonesync/zonefile.rb', line 189 def host @host end |
#priority ⇒ Object
Returns the value of attribute priority.
189 190 191 |
# File 'lib/zonesync/zonefile.rb', line 189 def priority @priority end |