class Kinksync::Configuration

Configuration class

Attributes

remote_path[R]

absolute path to mounted cloud storage location

Public Class Methods

new() click to toggle source

initializes Configuration with nil value for remote_path

# File lib/kinksync/configuration.rb, line 10
def initialize
  @remote_path = nil
end

Public Instance Methods

remote_path=(remote_path) click to toggle source

Returns absolute path of remote path

@return [String] remote path

# File lib/kinksync/configuration.rb, line 17
def remote_path=(remote_path)
  @remote_path = File.expand_path(remote_path)
end