Class: Fog::Storage::Local::Real

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Real

Returns a new instance of Real.



69
70
71
72
73
# File 'lib/fog/local/storage.rb', line 69

def initialize(options={})
  @local_root = ::File.expand_path(options[:local_root])

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

Instance Attribute Details

#endpointObject (readonly)

Returns the value of attribute endpoint.



67
68
69
# File 'lib/fog/local/storage.rb', line 67

def endpoint
  @endpoint
end

Instance Method Details

#copy_object(source_directory_name, source_object_name, target_directory_name, target_object_name, options = {}) ⇒ Object



83
84
85
86
87
88
89
# File 'lib/fog/local/storage.rb', line 83

def copy_object(source_directory_name, source_object_name, target_directory_name, target_object_name, options={})
  require 'fileutils'
  source_path = path_to(::File.join(source_directory_name, source_object_name))
  target_path = path_to(::File.join(target_directory_name, target_object_name))
  ::FileUtils.mkdir_p(::File.dirname(target_path))
  ::FileUtils.copy_file(source_path, target_path)
end

#local_rootObject



75
76
77
# File 'lib/fog/local/storage.rb', line 75

def local_root
  @local_root
end

#path_to(partial) ⇒ Object



79
80
81
# File 'lib/fog/local/storage.rb', line 79

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