Class: DNS::Zonefile::CNAME

Inherits:
Record
  • Object
show all
Defined in:
lib/dns/zonefile.rb

Instance Attribute Summary collapse

Attributes inherited from Record

#klass, #ttl

Instance Method Summary collapse

Methods inherited from Record

writer_for_ttl

Constructor Details

#initialize(vars, zonefile_record) ⇒ CNAME

Returns a new instance of CNAME.



169
170
171
172
173
174
175
176
177
178
# File 'lib/dns/zonefile.rb', line 169

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)
  end
end

Instance Attribute Details

#domainnameObject Also known as: target

Returns the value of attribute domainname.



167
168
169
# File 'lib/dns/zonefile.rb', line 167

def domainname
  @domainname
end

#hostObject Also known as: alias

Returns the value of attribute host.



167
168
169
# File 'lib/dns/zonefile.rb', line 167

def host
  @host
end