Class: Fog::Zerigo::DNS::Mock
- Inherits:
-
Object
- Object
- Fog::Zerigo::DNS::Mock
- Defined in:
- lib/fog/dns/zerigo.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Mock
constructor
A new instance of Mock.
- #reset_data ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Mock
Returns a new instance of Mock.
39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/fog/dns/zerigo.rb', line 39 def initialize(={}) unless .delete(:provider) location = caller.first warning = "[yellow][WARN] Fog::Zerigo::DNS.new is deprecated, use Fog::DNS.new(:provider => 'Zerigo') instead[/]" warning << " [light_black](" << location << ")[/] " Formatador.display_line(warning) end @zerigo_email = [:zerigo_email] @zerigo_token = [:zerigo_token] @data = self.class.data[@zerigo_email] end |
Class Method Details
.data ⇒ Object
33 34 35 36 37 |
# File 'lib/fog/dns/zerigo.rb', line 33 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
Instance Method Details
#reset_data ⇒ Object
52 53 54 55 |
# File 'lib/fog/dns/zerigo.rb', line 52 def reset_data self.class.data.delete(@zerigo_email) @data = self.class.data[@zerigo_email] end |