Class: Fog::Rackspace::CDN::Mock

Inherits:
Object
  • Object
show all
Defined in:
lib/fog/cdn/rackspace.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



30
31
32
33
34
35
36
37
38
39
40
# File 'lib/fog/cdn/rackspace.rb', line 30

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

  @rackspace_username = options[:rackspace_username]
  @data = self.class.data[@rackspace_username]
end

Class Method Details

.dataObject



18
19
20
21
22
# File 'lib/fog/cdn/rackspace.rb', line 18

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

.reset_data(keys = data.keys) ⇒ Object



24
25
26
27
28
# File 'lib/fog/cdn/rackspace.rb', line 24

def self.reset_data(keys=data.keys)
  for key in [*keys]
    data.delete(key)
  end
end