proviso 0.2.0.beta1 → 0.2.0.beta2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/proviso/commands/config.rb +1 -1
- data/proviso.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.0.
|
1
|
+
0.2.0.beta2
|
@@ -41,7 +41,7 @@ module Proviso::Command
|
|
41
41
|
|
42
42
|
def modify_config_file
|
43
43
|
config_hash = YAML.load_file(yaml_file)
|
44
|
-
config_hash
|
44
|
+
config_hash[@args[0]].merge!({ @args[1] => @args[2] }})
|
45
45
|
open(yaml_file, 'w') { |f| f.write config_hash.to_yaml }
|
46
46
|
end
|
47
47
|
|
data/proviso.gemspec
CHANGED