module Uberinstaller::Config

Shared configuration for Uberinstaller

Attributes

app_name[R]
app_version[R]
dry_run[RW]
local_package_manager[RW]
remote_package_manager[RW]
uberdirectory[RW]

Public Class Methods

command_path() click to toggle source
# File lib/uberinstaller/config.rb, line 13
def command_path
  @command_path ||= File.join @uberdirectory, 'cmds'
end
json_path() click to toggle source
# File lib/uberinstaller/config.rb, line 19
def json_path
  @json_path ||= File.join @uberdirectory, 'json'
end
local_pkg_path() click to toggle source
# File lib/uberinstaller/config.rb, line 16
def local_pkg_path
  @local_pkg_path ||= File.join @uberdirectory, 'pkgs' 
end