Class: Fog::DNS::DNSMadeEasy::Mock
- Inherits:
-
Object
- Object
- Fog::DNS::DNSMadeEasy::Mock
- Defined in:
- lib/fog/dnsmadeeasy/dns.rb
Class Method Summary collapse
Instance Method Summary collapse
- #data ⇒ Object
-
#initialize(options = {}) ⇒ Mock
constructor
A new instance of Mock.
- #reset_data ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Mock
Returns a new instance of Mock.
48 49 50 51 |
# File 'lib/fog/dnsmadeeasy/dns.rb', line 48 def initialize(={}) @dnsmadeeasy_api_key = [:dnsmadeeasy_api_key] @dnsmadeeasy_secret_key = [:dnsmadeeasy_secret_key] end |
Class Method Details
.data ⇒ Object
38 39 40 41 42 |
# File 'lib/fog/dnsmadeeasy/dns.rb', line 38 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
.reset ⇒ Object
44 45 46 |
# File 'lib/fog/dnsmadeeasy/dns.rb', line 44 def self.reset @data = nil end |
Instance Method Details
#data ⇒ Object
53 54 55 |
# File 'lib/fog/dnsmadeeasy/dns.rb', line 53 def data self.class.data[@dnsmadeeasy_api_key] end |
#reset_data ⇒ Object
57 58 59 |
# File 'lib/fog/dnsmadeeasy/dns.rb', line 57 def reset_data self.class.data.delete(@dnsmadeeasy_api_key) end |