module Dns::CatalogZone::ZoneHelper

ZoneHelper module

Public Instance Methods

add_allow_transfers(rr, label) click to toggle source
# File lib/dns/catalog_zone/helper.rb, line 92
def add_allow_transfers(rr, label)
  @allow_transfers[label] = Dns::CatalogZone::Prefixes.new unless @allow_transfers[label]
  @allow_transfers[label].parse_apl(rr)
end
add_masters(rr, label) click to toggle source
# File lib/dns/catalog_zone/helper.rb, line 82
def add_masters(rr, label)
  @masters[label] = Dns::CatalogZone::Master.new unless @masters[label]
  @masters[label].parse_master(rr)
end
add_notifies(rr, label) click to toggle source
# File lib/dns/catalog_zone/helper.rb, line 87
def add_notifies(rr, label)
  @notifies[label] = Dns::CatalogZone::Master.new unless @notifies[label]
  @notifies[label].parse_master(rr)
end