Class: Fog::Storage::Local::Mock
- Inherits:
-
Object
- Object
- Fog::Storage::Local::Mock
- Defined in:
- lib/fog/local/storage.rb
Instance Attribute Summary collapse
-
#endpoint ⇒ Object
readonly
Returns the value of attribute endpoint.
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.
33 34 35 36 37 38 39 |
# File 'lib/fog/local/storage.rb', line 33 def initialize(={}) Fog::Mock.not_implemented @local_root = ::File.([:local_root]) @endpoint = [:endpoint] || () end |
Instance Attribute Details
#endpoint ⇒ Object (readonly)
Returns the value of attribute endpoint.
21 22 23 |
# File 'lib/fog/local/storage.rb', line 21 def endpoint @endpoint end |
Class Method Details
.data ⇒ Object
23 24 25 26 27 |
# File 'lib/fog/local/storage.rb', line 23 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end |
.reset ⇒ Object
29 30 31 |
# File 'lib/fog/local/storage.rb', line 29 def self.reset @data = nil end |
Instance Method Details
#data ⇒ Object
41 42 43 |
# File 'lib/fog/local/storage.rb', line 41 def data self.class.data[@local_root] end |
#local_root ⇒ Object
45 46 47 |
# File 'lib/fog/local/storage.rb', line 45 def local_root @local_root end |
#path_to(partial) ⇒ Object
49 50 51 |
# File 'lib/fog/local/storage.rb', line 49 def path_to(partial) ::File.join(@local_root, partial) end |
#reset_data ⇒ Object
53 54 55 |
# File 'lib/fog/local/storage.rb', line 53 def reset_data self.class.data.delete(@local_root) end |