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

Inherits:
Rackspace::Service show all
Includes:
Utils
Defined in:
lib/fog/rackspace/storage.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Utils

#cdn

Methods inherited from Rackspace::Service

#authenticate, #endpoint_uri, #request

Constructor Details

#initialize(options = {}) ⇒ Mock

Returns a new instance of Mock.



76
77
78
79
80
# File 'lib/fog/rackspace/storage.rb', line 76

def initialize(options={})
  require 'mime/types'
  @rackspace_api_key = options[:rackspace_api_key]
  @rackspace_username = options[:rackspace_username]
end

Class Method Details

.dataObject



66
67
68
69
70
# File 'lib/fog/rackspace/storage.rb', line 66

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

.resetObject



72
73
74
# File 'lib/fog/rackspace/storage.rb', line 72

def self.reset
  @data = nil
end

Instance Method Details

#dataObject



82
83
84
# File 'lib/fog/rackspace/storage.rb', line 82

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

#regionObject



94
95
96
# File 'lib/fog/rackspace/storage.rb', line 94

def region
  @rackspace_region
end

#reset_dataObject



86
87
88
# File 'lib/fog/rackspace/storage.rb', line 86

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

#service_nameObject



90
91
92
# File 'lib/fog/rackspace/storage.rb', line 90

def service_name
  :cloudFiles
end