Clean up config class.
This commit is contained in:
parent
1b2a10f8af
commit
042e324632
1 changed files with 2 additions and 4 deletions
|
@ -10,16 +10,14 @@ require 'qasim/map/ssh'
|
||||||
class Qasim::Config
|
class Qasim::Config
|
||||||
attr_reader :mount_dir
|
attr_reader :mount_dir
|
||||||
attr_reader :config_dir
|
attr_reader :config_dir
|
||||||
|
attr_reader :debug
|
||||||
|
attr_reader :verbose
|
||||||
|
|
||||||
def initialize
|
def initialize
|
||||||
@mount_dir = File.join ENV['HOME'], 'mnt'
|
@mount_dir = File.join ENV['HOME'], 'mnt'
|
||||||
|
|
||||||
@config_dir = Qasim::APP_CONFIG_DIR
|
@config_dir = Qasim::APP_CONFIG_DIR
|
||||||
@config_file = nil
|
@config_file = nil
|
||||||
@initialize_enable = false
|
|
||||||
@umount_enable = false
|
|
||||||
@target = nil
|
|
||||||
@verbose_enable = false
|
|
||||||
@debug = false
|
@debug = false
|
||||||
@verbose = false
|
@verbose = false
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue