Class: Fog::Bluebox::Compute::Mock

Inherits:
Object
  • Object
show all
Defined in:
lib/fog/compute/bluebox.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



40
41
42
43
44
45
46
47
48
49
# File 'lib/fog/compute/bluebox.rb', line 40

def initialize(options={})
  unless options.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 = options[:bluebox_api_key]
end

Class Method Details

.dataObject



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

.resetObject



36
37
38
# File 'lib/fog/compute/bluebox.rb', line 36

def self.reset
  @data = nil
end

Instance Method Details

#dataObject



51
52
53
# File 'lib/fog/compute/bluebox.rb', line 51

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

#reset_dataObject



55
56
57
# File 'lib/fog/compute/bluebox.rb', line 55

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