# File lib/fog/dreamhost/dns.rb, line 20 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end
# File lib/fog/dreamhost/dns.rb, line 30 def initialize(options={}) @dreamhost_api_key = options[:dreamhost_api_key] end
# File lib/fog/dreamhost/dns.rb, line 26 def self.reset @data = nil end
# File lib/fog/dreamhost/requests/dns/create_record.rb, line 5 def create_record(record, type, value, comment = "") Fog::Mock.not_implemented end
# File lib/fog/dreamhost/dns.rb, line 34 def data self.class.data end
# File lib/fog/dreamhost/requests/dns/delete_record.rb, line 5 def delete_record(name, type, value) raise Fog::Mock.not_implemented end
# File lib/fog/dreamhost/requests/dns/list_records.rb, line 5 def request(*args) Fog::Mock.not_implemented end
# File lib/fog/dreamhost/dns.rb, line 38 def reset_data self.class.data.delete end