rconf 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/rconf +12 -14
- data/lib/rconf/version.rb +1 -1
- metadata +1 -1
data/bin/rconf
CHANGED
@@ -64,20 +64,18 @@ where [options] are:
|
|
64
64
|
end
|
65
65
|
end
|
66
66
|
Command.set_verbose if opts[:verbose]
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
new.configure(opts)
|
80
|
-
end
|
67
|
+
if opts[:configurators]
|
68
|
+
new.list_configurators
|
69
|
+
elsif opts[:platform]
|
70
|
+
new.show_platform
|
71
|
+
elsif opts[:overrides]
|
72
|
+
new.show_overrides
|
73
|
+
elsif opts[:update]
|
74
|
+
new.update
|
75
|
+
elsif opts[:remove]
|
76
|
+
new.remove
|
77
|
+
else
|
78
|
+
Dir.chdir(File.dirname(opts[:config])) { new.configure(opts) }
|
81
79
|
end
|
82
80
|
end
|
83
81
|
|
data/lib/rconf/version.rb
CHANGED