Class: Zonesync::Zonefile::CNAME
- Defined in:
- lib/zonesync/zonefile.rb
Instance Attribute Summary collapse
-
#domainname ⇒ Object
(also: #target)
Returns the value of attribute domainname.
-
#host ⇒ Object
(also: #alias)
Returns the value of attribute host.
Attributes inherited from Record
Instance Method Summary collapse
-
#initialize(vars, zonefile_record) ⇒ CNAME
constructor
A new instance of CNAME.
Methods inherited from Record
Constructor Details
#initialize(vars, zonefile_record) ⇒ CNAME
Returns a new instance of CNAME.
172 173 174 175 176 177 178 179 180 181 182 |
# File 'lib/zonesync/zonefile.rb', line 172 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.domainname = qualify_host(zonefile_record.target.to_s) self.comment = zonefile_record.comment&.to_s end end |
Instance Attribute Details
#domainname ⇒ Object Also known as: target
Returns the value of attribute domainname.
170 171 172 |
# File 'lib/zonesync/zonefile.rb', line 170 def domainname @domainname end |
#host ⇒ Object Also known as: alias
Returns the value of attribute host.
170 171 172 |
# File 'lib/zonesync/zonefile.rb', line 170 def host @host end |