Class: Fog::Storage::Local::Mock
- Inherits:
-
Object
- Object
- Fog::Storage::Local::Mock
- Defined in:
- lib/fog/local/storage.rb
Class Method Summary collapse
Instance Method Summary collapse
- #data ⇒ Object
-
#initialize(options = {}) ⇒ Mock
constructor
A new instance of Mock.
- #local_root ⇒ Object
- #path_to(partial) ⇒ Object
- #reset_data ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Mock
Returns a new instance of Mock.
28 29 30 31 32 33 |
# File 'lib/fog/local/storage.rb', line 28 def initialize(={}) Fog::Mock.not_implemented require 'mime/types' @local_root = ::File.([:local_root]) end |
Class Method Details
.data ⇒ Object
18 19 20 21 22 |
# File 'lib/fog/local/storage.rb', line 18 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
.reset ⇒ Object
24 25 26 |
# File 'lib/fog/local/storage.rb', line 24 def self.reset @data = nil end |
Instance Method Details
#data ⇒ Object
35 36 37 |
# File 'lib/fog/local/storage.rb', line 35 def data self.class.data[@local_root] end |
#local_root ⇒ Object
39 40 41 |
# File 'lib/fog/local/storage.rb', line 39 def local_root @local_root end |
#path_to(partial) ⇒ Object
43 44 45 |
# File 'lib/fog/local/storage.rb', line 43 def path_to(partial) ::File.join(@local_root, partial) end |
#reset_data ⇒ Object
47 48 49 |
# File 'lib/fog/local/storage.rb', line 47 def reset_data self.class.data.delete(@local_root) end |