From 042e3246325f1ccc7b91de1a7729ad9265f8a4fc Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Wed, 2 Sep 2015 16:19:22 +0200 Subject: [PATCH] Clean up config class. --- lib/qasim/config.rb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/qasim/config.rb b/lib/qasim/config.rb index 73ab536..0ab0fa0 100644 --- a/lib/qasim/config.rb +++ b/lib/qasim/config.rb @@ -10,16 +10,14 @@ require 'qasim/map/ssh' class Qasim::Config attr_reader :mount_dir attr_reader :config_dir + attr_reader :debug + attr_reader :verbose def initialize @mount_dir = File.join ENV['HOME'], 'mnt' @config_dir = Qasim::APP_CONFIG_DIR @config_file = nil - @initialize_enable = false - @umount_enable = false - @target = nil - @verbose_enable = false @debug = false @verbose = false end