model_renamer 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/model_renamer/version.rb +1 -1
- data/model_renamer.gemspec +3 -3
- metadata +8 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3d54f2d439c6e9c3a514a11fcd1de27b4934887
|
4
|
+
data.tar.gz: 99f9d126162c25f118396a7ac77b037efcd9dd4e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9e26e21bb329aa68e093dca8239661866555986d40dc5bee146eaf7942e82002d97566a2fc2d1782524e6f17526a96fcbd910cfdcfffe30ea64ff656d292471
|
7
|
+
data.tar.gz: 7d30a203890ff711779041b0c1f871269e3df4a4f8b22443f11e65c1cebff6f57c6a16b7101f89723a736f2655ee6b43b7a06ee18b84838a43134a8d13e2b2fb
|
data/model_renamer.gemspec
CHANGED
@@ -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://
|
12
|
-
spec.summary = "Renames any model"
|
13
|
-
spec.description = "
|
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
|
+
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:
|
42
|
-
|
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://
|
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: []
|