railsrumble-rumble-tools 0.1.1 → 0.1.2
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/lib/rumble-tools.rb +2 -1
- metadata +5 -5
data/lib/rumble-tools.rb
CHANGED
@@ -44,8 +44,9 @@ module RailsRumble
|
|
44
44
|
end
|
45
45
|
|
46
46
|
def update_user_config!(params)
|
47
|
+
previous_config = user_configuration
|
47
48
|
File.open(CONFIG_PATH, "w+") do |f|
|
48
|
-
f.write
|
49
|
+
f.write previous_config.merge(params).to_yaml
|
49
50
|
end
|
50
51
|
end
|
51
52
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: railsrumble-rumble-tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Darcy Laycock
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2009-08-
|
13
|
+
date: 2009-08-19 00:00:00 -07:00
|
14
14
|
default_executable: rumble
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -44,7 +44,7 @@ files:
|
|
44
44
|
- test/test_helper.rb
|
45
45
|
- LICENSE
|
46
46
|
- README.rdoc
|
47
|
-
has_rdoc:
|
47
|
+
has_rdoc: true
|
48
48
|
homepage: http://github.com/railsrumble/cli-toolkit
|
49
49
|
licenses:
|
50
50
|
post_install_message:
|
@@ -69,8 +69,8 @@ requirements: []
|
|
69
69
|
rubyforge_project:
|
70
70
|
rubygems_version: 1.3.5
|
71
71
|
signing_key:
|
72
|
-
specification_version:
|
72
|
+
specification_version: 2
|
73
73
|
summary: Tools for the RailsRumble
|
74
74
|
test_files:
|
75
|
-
- test/rumble_tools_test.rb
|
76
75
|
- test/test_helper.rb
|
76
|
+
- test/rumble_tools_test.rb
|