Class: Fog::Storage::Rackspace::Mock
Class Method Summary
collapse
Instance Method Summary
collapse
Methods included from Utils
#cdn
#authenticate, #endpoint_uri
Constructor Details
#initialize(options = {}) ⇒ Mock
Returns a new instance of Mock.
67
68
69
70
71
|
# File 'lib/fog/rackspace/storage.rb', line 67
def initialize(options={})
require 'mime/types'
@rackspace_api_key = options[:rackspace_api_key]
@rackspace_username = options[:rackspace_username]
end
|
Class Method Details
.data ⇒ Object
57
58
59
60
61
|
# File 'lib/fog/rackspace/storage.rb', line 57
def self.data
@data ||= Hash.new do |hash, key|
hash[key] = {}
end
end
|
.reset ⇒ Object
63
64
65
|
# File 'lib/fog/rackspace/storage.rb', line 63
def self.reset
@data = nil
end
|
Instance Method Details
#data ⇒ Object
73
74
75
|
# File 'lib/fog/rackspace/storage.rb', line 73
def data
self.class.data[@rackspace_username]
end
|
#region ⇒ Object
85
86
87
|
# File 'lib/fog/rackspace/storage.rb', line 85
def region
@rackspace_region
end
|
#reset_data ⇒ Object
77
78
79
|
# File 'lib/fog/rackspace/storage.rb', line 77
def reset_data
self.class.data.delete(@rackspace_username)
end
|
#service_name ⇒ Object
81
82
83
|
# File 'lib/fog/rackspace/storage.rb', line 81
def service_name
:cloudFiles
end
|