module Fog::DNS

Public Class Methods

new(orig_attributes) click to toggle source
Calls superclass method
# File lib/fog/dns.rb, line 5
def self.new(orig_attributes)
  attributes = orig_attributes.dup # prevent delete from having side effects
  case provider = attributes.delete(:provider).to_s.downcase.to_sym
  when :stormondemand
    require "fog/dns/storm_on_demand"
    Fog::DNS::StormOnDemand.new(attributes)
  else
    super(orig_attributes)
  end
end
zones() click to toggle source
# File lib/fog/dns.rb, line 16
def self.zones
  zones = []
  providers.each do |provider|
    begin
      zones.concat(self[provider].zones)
    rescue # ignore any missing credentials/etc
    end
  end
  zones
end