Class: Fog::Storage::Local::Mock

Inherits:
Object
  • Object
show all
Defined in:
lib/fog/local/storage.rb

Instance Attribute Summary (collapse)

Class Method Summary (collapse)

Instance Method Summary (collapse)

Constructor Details

- (Mock) initialize(options = {})

A new instance of Mock



33
34
35
36
37
38
39
40
# File 'lib/fog/local/storage.rb', line 33

def initialize(options={})
  Fog::Mock.not_implemented

  require 'mime/types'
  @local_root = ::File.expand_path(options[:local_root])

  @endpoint = options[:endpoint] || build_endpoint_from_options(options)
end

Instance Attribute Details

- (Object) endpoint (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

+ (Object) data



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

+ (Object) reset



29
30
31
# File 'lib/fog/local/storage.rb', line 29

def self.reset
  @data = nil
end

Instance Method Details

- (Object) data



42
43
44
# File 'lib/fog/local/storage.rb', line 42

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

- (Object) local_root



46
47
48
# File 'lib/fog/local/storage.rb', line 46

def local_root
  @local_root
end

- (Object) path_to(partial)



50
51
52
# File 'lib/fog/local/storage.rb', line 50

def path_to(partial)
  ::File.join(@local_root, partial)
end

- (Object) reset_data



54
55
56
# File 'lib/fog/local/storage.rb', line 54

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