Class: Fog::Rackspace::Storage::Mock
- Inherits:
-
Object
- Object
- Fog::Rackspace::Storage::Mock
- Includes:
- Utils
- Defined in:
- lib/fog/storage/rackspace.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Mock
constructor
A new instance of Mock.
Methods included from Utils
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(={}) unless .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 = [:rackspace_api_key] @rackspace_username = [:rackspace_username] @data = self.class.data[@rackspace_username] end |
Class Method Details
.data ⇒ Object
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 |