Class: Fog::Rackspace::Storage::Mock

Inherits:
Object
  • Object
show all
Includes:
Utils
Defined in:
lib/fog/storage/rackspace.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Utils

#cdn, #parse_data

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/fog/storage/rackspace.rb', line 75

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

  require 'mime/types'
  @rackspace_api_key = options[:rackspace_api_key]
  @rackspace_username = options[:rackspace_username]
  @data = self.class.data[@rackspace_username]
end

Class Method Details

.dataObject



63
64
65
66
67
# File 'lib/fog/storage/rackspace.rb', line 63

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

.reset_data(keys = data.keys) ⇒ Object



69
70
71
72
73
# File 'lib/fog/storage/rackspace.rb', line 69

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