Object
# File lib/fog/dnsmadeeasy/dns.rb, line 36 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end
# File lib/fog/dnsmadeeasy/dns.rb, line 46 def initialize(options={}) @dnsmadeeasy_api_key = options[:dnsmadeeasy_api_key] @dnsmadeeasy_secret_key = options[:dnsmadeeasy_secret_key] end
# File lib/fog/dnsmadeeasy/dns.rb, line 42 def self.reset @data = nil end
# File lib/fog/dnsmadeeasy/dns.rb, line 51 def data self.class.data[@dnsmadeeasy_api_key] end
# File lib/fog/dnsmadeeasy/dns.rb, line 55 def reset_data self.class.data.delete(@dnsmadeeasy_api_key) end
[Validate]
Generated with the Darkfish Rdoc Generator 2.