proviso 0.2.0.beta1 → 0.2.0.beta2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0.beta1
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.merge!({@args[0] => { @args[1] => @args[2] }})
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
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{proviso}
8
- s.version = "0.2.0.beta1"
8
+ s.version = "0.2.0.beta2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Tom Wilson"]
metadata CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 0
7
7
  - 2
8
8
  - 0
9
- - beta1
10
- version: 0.2.0.beta1
9
+ - beta2
10
+ version: 0.2.0.beta2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Tom Wilson