nomadize 0.4.0 → 0.4.1
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.
- checksums.yaml +4 -4
- data/README.md +3 -0
- data/exe/nomadize +1 -1
- data/lib/nomadize/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ec6b901bd206ae3d65a945679248183c23e8fa5
|
4
|
+
data.tar.gz: 4886dd3cafa1f31a9ab7d120fec4a7952e2f3305
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40c6977c99aaa8e4187ddc8fa0c1f82cf725e9296bd7dbfcd9a92a94a3d67294de9bf27b498f77321dee1b75695197e32f9d916432fb1f3e85b4a7d9e20ad96b
|
7
|
+
data.tar.gz: 26079c9bb1642085fcffebca2fab530e8bae7d5fc4a0ab618123d6151cfc7dce912573f6226bfb065b44cd70339326b07d21cfe7b012fd4c98f00d5d3965ae29
|
data/README.md
CHANGED
@@ -112,6 +112,9 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/piisal
|
|
112
112
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
113
113
|
|
114
114
|
## Changelog
|
115
|
+
0.4.1
|
116
|
+
* Fix a bug with command line utility using and incorrect method name.
|
117
|
+
|
115
118
|
0.4.0
|
116
119
|
* support DATABASE_URL env variable
|
117
120
|
* Add template_config generator to command line tool
|
data/exe/nomadize
CHANGED
@@ -22,7 +22,7 @@ when '--help' then show_help
|
|
22
22
|
when 'create' then Nomadize.create_database
|
23
23
|
when 'drop' then Nomadize.drop_database
|
24
24
|
when 'new_migration' then Nomadize.generate_template_migration_file(migration_name)
|
25
|
-
when 'migrate' then Nomadize.
|
25
|
+
when 'migrate' then Nomadize.run_migrations
|
26
26
|
when 'status' then Nomadize.status
|
27
27
|
when 'rollback' then Nomadize.rollback(ARGV.fetch(1, 1))
|
28
28
|
when 'generate_template_config' then Nomadize.generate_template_config
|
data/lib/nomadize/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nomadize
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul Dawson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|