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

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/fog/storage/rackspace.rb', line 48

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]
  reset_data
end

Class Method Details

.dataObject



42
43
44
45
46
# File 'lib/fog/storage/rackspace.rb', line 42

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

Instance Method Details

#reset_dataObject



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

def reset_data
  self.class.data.delete(@rackspace_username)
  @data = self.class.data[@rackspace_username]
end