Class: Fog::Slicehost::DNS::Mock

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



37
38
39
40
41
42
43
44
45
46
# File 'lib/fog/dns/slicehost.rb', line 37

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

  @slicehost_password = options[:slicehost_password]
end

Class Method Details

.dataObject



27
28
29
30
31
# File 'lib/fog/dns/slicehost.rb', line 27

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

.resetObject



33
34
35
# File 'lib/fog/dns/slicehost.rb', line 33

def self.reset
  @data = nil
end

Instance Method Details

#dataObject



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

def data
  self.class.data[@slicehost_password]
end

#reset_dataObject



52
53
54
# File 'lib/fog/dns/slicehost.rb', line 52

def reset_data
  self.class.data.delete(@slicehost_password)
end