rename-rails 1.0.1 → 1.0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9d878a374e46c891b61516644a7ed3ccb06c078202bb5aa9b525d27b10cd2499
4
- data.tar.gz: 1379d78f6320cbfbb8f36e102cecfad2385709f93a1b2655ee8a1c93296bbfcd
3
+ metadata.gz: f8021674f2906ea9d47c23b2e92cb83aad1bc3ddda73bcf13dfa962219c4a1fe
4
+ data.tar.gz: e61965658e714bb666daa8cae259ca87e64244c32057a3d4f6d8342cdd1e2fd1
5
5
  SHA512:
6
- metadata.gz: 7e0453c12fb3dc6e82cd04cded2dc99c7b1df1d82719d08782b723767319618a9bc5d205a2d95b70cb68e91e641e6e177d98c2428a91dc3c1f6f43be877d0c0e
7
- data.tar.gz: ffbda19ea6e5a7847a114f382c5c6d7637d3b8bdfe1606d8f67dc37b1c542177c18a63323bcef4b061dec3c07c9f4b91322f5ce198565d14fd030d06d040949d
6
+ metadata.gz: 70c3623d4c4877b23ae0e3f3d091fbebf9ce6217330c2fe39c2a71d4dcb85ab51960393640f9865aae900e3780d4627da3339b7bb517566a5bf966db63a1ddd2
7
+ data.tar.gz: 538775a269a828498d3d5ad48a93441fecef36e1c5455500a721ef1797df5f97713293640cbc5dd905d80068d0e6df092f658a5eef21e66f55e8a86277f30e53
data/README.md CHANGED
@@ -3,11 +3,13 @@ rename-rails
3
3
 
4
4
  This gem allows you to rename your Rails application using a single command.
5
5
 
6
- A fork of [rename][rename], originally authored by [@morshedalam][], with
7
- updates for Rails 6 provided by [@rlogwood][] and [@dbronzetti][].
6
+ A fork of [rename][], originally authored by [@morshedalam][] and
7
+ [@mindplace][], with updates for Rails 6 provided by [@rlogwood][] and
8
+ [@dbronzetti][].
8
9
 
9
10
  [rename]: https://github.com/morshedalam/rename
10
11
  [@morshedalam]: https://github.com/morshedalam
12
+ [@mindplace]: https://github.com/mindplace
11
13
  [@rlogwood]: https://github.com/rlogwood
12
14
  [@dbronzetti]: https://github.com/dbronzetti
13
15
 
@@ -25,7 +27,7 @@ Usage
25
27
  -----
26
28
 
27
29
  ```sh
28
- $ rails generate rename:into NewAppName
30
+ $ rails generate rename_rails:app_to NewAppName
29
31
  ```
30
32
 
31
33
  Contributing
@@ -1 +1 @@
1
- rails generate rename:app_to NewAppName
1
+ rails generate rename_rails:app_to NewAppName
@@ -8,7 +8,6 @@ module RenameRails
8
8
  include CommonMethods
9
9
 
10
10
  def app_to
11
- warn "[DEPRECATION] `app_to` is deprecated. Please use `into` instead."
12
11
  perform
13
12
  end
14
13
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RenameRails
4
- VERSION = "1.0.1"
4
+ VERSION = "1.0.2"
5
5
  end
data/rename_rails.gemspec CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |gem|
7
7
  gem.version = RenameRails::VERSION
8
8
  gem.licenses = ["MIT"]
9
9
  gem.summary = "Rename your Rails application using a single command."
10
- gem.authors = ["Morshed Alam", "Richard Logwood", "Jake Romer"]
10
+ gem.authors = ["Morshed Alam", "Esther Leytush", "Damian Bronzetti", "Richard Logwood", "Jake Romer"]
11
11
  gem.email = "jake@jmromer.org"
12
12
  gem.files = `git ls-files`.split("\n")
13
13
  gem.homepage = "https://github.com/jmromer/rename-rails"
metadata CHANGED
@@ -1,10 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rename-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Morshed Alam
8
+ - Esther Leytush
9
+ - Damian Bronzetti
8
10
  - Richard Logwood
9
11
  - Jake Romer
10
12
  autorequire:
@@ -69,8 +71,6 @@ files:
69
71
  - Rakefile
70
72
  - lib/generators/rename_rails/app_to/USAGE
71
73
  - lib/generators/rename_rails/app_to/app_to_generator.rb
72
- - lib/generators/rename_rails/into/USAGE
73
- - lib/generators/rename_rails/into/into_generator.rb
74
74
  - lib/generators/rename_rails/shared/common_methods.rb
75
75
  - lib/rename_rails.rb
76
76
  - lib/rename_rails/version.rb
@@ -1 +0,0 @@
1
- rails g rename:into NewName
@@ -1,15 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require File.expand_path("../shared/common_methods", File.dirname(__FILE__))
4
-
5
- module RenameRails
6
- module Generators
7
- class IntoGenerator < Rails::Generators::Base
8
- include CommonMethods
9
-
10
- def into
11
- perform
12
- end
13
- end
14
- end
15
- end