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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1356c5d4667a3fbd4c11ab51081300c6a9f33c9a
4
- data.tar.gz: 5aaf1896c0727b7707c0ce1e451534dce8e08446
3
+ metadata.gz: 2ec6b901bd206ae3d65a945679248183c23e8fa5
4
+ data.tar.gz: 4886dd3cafa1f31a9ab7d120fec4a7952e2f3305
5
5
  SHA512:
6
- metadata.gz: 2796afcc8b7c193276fed363e6224c2f41afe483feb6ba144611bde7d074fbd29b8d962c25e5c19dbc1ac084a8a804feea504e8279c2ccc4c26948717ca0f1ad
7
- data.tar.gz: 39241f364e82510901a39a32f45527048090dda7188134e1c98dabe2d3f7c87e9e9e7a1a7bef46e16efe4f6c575cd9bf97345a7f491aa47fd7e77f824a040157
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.migrate
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
@@ -1,3 +1,3 @@
1
1
  module Nomadize
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
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.0
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: 2015-12-04 00:00:00.000000000 Z
11
+ date: 2016-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler