Class: Fog::DNSimple::DNS::Mock

Inherits:
Object
  • Object
show all
Defined in:
lib/fog/dns/dnsimple.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/fog/dns/dnsimple.rb', line 34

def initialize(options={})
  unless options.delete(:provider)
    location = caller.first
    warning = "[yellow][WARN] Fog::DNS::DNSimple.new is deprecated, use Fog::DNS.new(:provider => 'DNSimple') instead[/]"
    warning << " [light_black](" << location << ")[/] "
    Formatador.display_line(warning)
  end

  @dnsimple_email = options[:dnsimple_email]
  @dnsimple_password  = options[:dnsimple_password]
  @data = self.class.data[@dnsimple_email]
end

Class Method Details

.dataObject



28
29
30
31
32
# File 'lib/fog/dns/dnsimple.rb', line 28

def self.data
  @data ||= Hash.new do |hash, key|
    hash[key] = {}
  end
end

Instance Method Details

#reset_dataObject



47
48
49
50
# File 'lib/fog/dns/dnsimple.rb', line 47

def reset_data
  self.class.data.delete(@dnsimple_email)
  @data = self.class.data[@dnsimple_email]
end