model_renamer 0.1.4 → 0.1.5

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: 069e190d21b194a2d63b4e44b4bfac8d92e89aad
4
- data.tar.gz: 9659a495baa7263643627c67551be29f3560e5e0
3
+ metadata.gz: f3d54f2d439c6e9c3a514a11fcd1de27b4934887
4
+ data.tar.gz: 99f9d126162c25f118396a7ac77b037efcd9dd4e
5
5
  SHA512:
6
- metadata.gz: 972da3171b8c765a22f35e6f4b34fe5c0da0fa454cb99f6630180d9e412ba4f869839fe790094513374d50d3b3e62153f8fdd0258071efd38205ebe32fe4bf01
7
- data.tar.gz: ab59bae56dfdbf465f82490526b9520ed3172145c2b679f2eff828a039e0594bc24ca12229e2c14a344b4e0d0b94dfe6a528a3c837884f3d3d93e7f493c546e4
6
+ metadata.gz: f9e26e21bb329aa68e093dca8239661866555986d40dc5bee146eaf7942e82002d97566a2fc2d1782524e6f17526a96fcbd910cfdcfffe30ea64ff656d292471
7
+ data.tar.gz: 7d30a203890ff711779041b0c1f871269e3df4a4f8b22443f11e65c1cebff6f57c6a16b7101f89723a736f2655ee6b43b7a06ee18b84838a43134a8d13e2b2fb
@@ -1,3 +1,3 @@
1
1
  module ModelRenamer
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
8
8
  spec.version = ModelRenamer::VERSION
9
9
  spec.authors = ["Paul Gut"]
10
10
  spec.email = ["pg@vts.com"]
11
- spec.homepage = "https://rubygems.org/gems/model_renamer"
12
- spec.summary = "Renames any model"
13
- spec.description = "A gem that renames your ActiveRecord models and generates corresponding migrations"
11
+ spec.homepage = "https://github.com/viewthespace/model_renamer"
12
+ spec.summary = "Renames any ActiveRecord model and generates database migrations"
13
+ spec.description = "The model renamer gem allows you to rename any a model in your rails application. The gem looks for occurrences of any variation or pluralization of the old model name and changes it to the corresponding variation of the new name. It also generates database migrations that rename tables and foreign keys referencing the old name."
14
14
  spec.license = "MIT"
15
15
 
16
16
  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: model_renamer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Gut
@@ -38,8 +38,11 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
- description: A gem that renames your ActiveRecord models and generates corresponding
42
- migrations
41
+ description: The model renamer gem allows you to rename any a model in your rails
42
+ application. The gem looks for occurrences of any variation or pluralization of
43
+ the old model name and changes it to the corresponding variation of the new name.
44
+ It also generates database migrations that rename tables and foreign keys referencing
45
+ the old name.
43
46
  email:
44
47
  - pg@vts.com
45
48
  executables: []
@@ -56,7 +59,7 @@ files:
56
59
  - lib/model_renamer/variations_generator.rb
57
60
  - lib/model_renamer/version.rb
58
61
  - model_renamer.gemspec
59
- homepage: https://rubygems.org/gems/model_renamer
62
+ homepage: https://github.com/viewthespace/model_renamer
60
63
  licenses:
61
64
  - MIT
62
65
  metadata:
@@ -80,5 +83,5 @@ rubyforge_project:
80
83
  rubygems_version: 2.2.2
81
84
  signing_key:
82
85
  specification_version: 4
83
- summary: Renames any model
86
+ summary: Renames any ActiveRecord model and generates database migrations
84
87
  test_files: []