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