Class: Fog::Bluebox::Compute::Mock
- Inherits:
-
Object
- Object
- Fog::Bluebox::Compute::Mock
- Defined in:
- lib/fog/compute/bluebox.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.
42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/fog/compute/bluebox.rb', line 42 def initialize(={}) unless .delete(:provider) location = caller.first warning = "[yellow][WARN] Fog::Bluebox::Compute.new is deprecated, use Fog::Compute.new(:provider => 'Bluebox') instead[/]" warning << " [light_black](" << location << ")[/] " Formatador.display_line(warning) end @bluebox_api_key = [:bluebox_api_key] @data = self.class.data[@bluebox_api_key] end |
Class Method Details
.data ⇒ Object
30 31 32 33 34 |
# File 'lib/fog/compute/bluebox.rb', line 30 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
.reset_data(keys = data.keys) ⇒ Object
36 37 38 39 40 |
# File 'lib/fog/compute/bluebox.rb', line 36 def self.reset_data(keys=data.keys) for key in [*keys] data.delete(key) end end |