next_rails 1.0.2 → 1.0.3

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,4 @@
1
1
  ---
2
- SHA256:
3
- metadata.gz: a0b740bd739176590e5fb4ee4f38413740f341b25efc903da804685d0bff213f
4
- data.tar.gz: eb18d2673ce7f36bd1d92a7111e9628044346a9512d20a5e0e3cd22c40d81cfd
5
2
  SHA512:
6
- metadata.gz: fcdcc8226812e09293c26906fd1be8c77760e874748963ee42fed43ccfb45ba954efe81e9d1ffa7ee8fdb78628f7027708343c6e1a2df15eba082489625e332a
7
- data.tar.gz: c44e7ff18b2f98c025ddea4cd1419963523c8ed9cd742b5c8c3e0d9863257c7646aaef320c1c8c7f63e885bd6bc9daf2039983a694487c9d6f4ce9691b910e7b
3
+ metadata.gz: 26b0f59466fa7156a8a4c1087558b32e6f5bc628b70b3b1a377bc1465eebb16123a59bfb9a4885c63e1028c003b58aa2ad1d2e638bc95d3a729b8cfae21b162a
4
+ data.tar.gz: a2c14a411a7f998e65b5af169adbe08148c1f2f3acf1b244ddfd4d883391c46840b38200ac3014ae9bb39333aecea572fbaf5d8efe46ade92a36f40db643c85d
data/.gitignore CHANGED
@@ -13,3 +13,4 @@
13
13
  .rspec_status
14
14
 
15
15
  .ruby-version
16
+ Gemfile.lock
data/CHANGELOG.md ADDED
@@ -0,0 +1,14 @@
1
+ # main [(unreleased)](https://github.com/fastruby/next_rails/compare/v1.0.3...main)
2
+
3
+ # v1.0.3 / 2021-04-05 [(commits)](https://github.com/fastruby/next_rails/compare/v1.0.2...v1.0.3)
4
+
5
+ * [BUGFIX] Update README.md to better document this `ten_years_rails` fork (by [@etagwerker][])
6
+ * [BUGFIX] Make ActionView an optional dependency (by [@manuca][])
7
+
8
+ # v1.0.2 / 2020-01-20
9
+
10
+ # v1.0.1 / 2019-07-26
11
+
12
+ # v1.0.0 / 2019-07-24
13
+
14
+ * Official Release
data/README.md CHANGED
@@ -1,10 +1,24 @@
1
- # Ten Years of Rails Upgrades
1
+ # Next Rails
2
2
 
3
- This is a companion to the "Ten Years of Rails Upgrades" conference talk. You'll find various utilities that we use at Clio to help us prepare for and complete Rails upgrades.
3
+ This is a toolkit to upgrade your next Rails application. It will help you
4
+ set up dual booting, track deprecation warnings, and get a report on outdated
5
+ dependencies for any Rails application.
4
6
 
5
- These scripts are still early days and may not work in every environment or app.
7
+ This project is a fork of [`ten_years_rails`](https://github.com/clio/ten_years_rails)
6
8
 
7
- I wouldn't recommend adding this to your Gemfile long-term. Rather, try out the scripts and use them as a point of reference. Feel free to tweak them to better fit your environment.
9
+ ## History
10
+
11
+ This gem started as a companion to the "[Ten Years of Rails Upgrades](https://www.youtube.com/watch?v=6aCfc0DkSFo)"
12
+ conference talk by Jordan Raine.
13
+
14
+ > You'll find various utilities that we use at Clio to help us prepare for and
15
+ > complete Rails upgrades.
16
+
17
+ > These scripts are still early days and may not work in every environment or app.
18
+
19
+ > I wouldn't recommend adding this to your Gemfile long-term. Rather, try out
20
+ > the scripts and use them as a point of reference. Feel free to tweak them to
21
+ > better fit your environment.
8
22
 
9
23
  ## Usage
10
24
 
data/exe/bundle_report CHANGED
@@ -55,6 +55,3 @@ end
55
55
 
56
56
  # Needs to happen first
57
57
  require "bundler/setup"
58
-
59
- require "action_view"
60
- require "active_support/core_ext/object/acts_like"
@@ -1,3 +1,3 @@
1
1
  module NextRails
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
data/next_rails.gemspec CHANGED
@@ -29,5 +29,5 @@ Gem::Specification.new do |spec|
29
29
  spec.add_development_dependency "rspec", "~> 3.0"
30
30
  spec.add_development_dependency "simplecov", "~> 0.17.1"
31
31
  spec.add_development_dependency "timecop", "~> 0.9.1"
32
- spec.add_runtime_dependency "actionview"
32
+ spec.add_development_dependency "actionview", "< 6.0"
33
33
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: next_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ernesto Tagwerker
8
8
  - Luis Sagastume
9
- autorequire:
9
+ autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2020-01-20 00:00:00.000000000 Z
12
+ date: 2021-04-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: colorize
@@ -99,16 +99,16 @@ dependencies:
99
99
  name: actionview
100
100
  requirement: !ruby/object:Gem::Requirement
101
101
  requirements:
102
- - - ">="
102
+ - - "<"
103
103
  - !ruby/object:Gem::Version
104
- version: '0'
105
- type: :runtime
104
+ version: '6.0'
105
+ type: :development
106
106
  prerelease: false
107
107
  version_requirements: !ruby/object:Gem::Requirement
108
108
  requirements:
109
- - - ">="
109
+ - - "<"
110
110
  - !ruby/object:Gem::Version
111
- version: '0'
111
+ version: '6.0'
112
112
  description: A set of handy tools to upgrade your Rails application and keep it up
113
113
  to date
114
114
  email:
@@ -126,8 +126,8 @@ files:
126
126
  - ".gitignore"
127
127
  - ".rspec"
128
128
  - ".travis.yml"
129
+ - CHANGELOG.md
129
130
  - Gemfile
130
- - Gemfile.lock
131
131
  - LICENSE.txt
132
132
  - README.md
133
133
  - Rakefile
@@ -149,7 +149,7 @@ homepage: https://github.com/fastruby/next_rails
149
149
  licenses:
150
150
  - MIT
151
151
  metadata: {}
152
- post_install_message:
152
+ post_install_message:
153
153
  rdoc_options: []
154
154
  require_paths:
155
155
  - lib
@@ -164,8 +164,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
164
164
  - !ruby/object:Gem::Version
165
165
  version: '0'
166
166
  requirements: []
167
- rubygems_version: 3.0.6
168
- signing_key:
167
+ rubygems_version: 3.0.8
168
+ signing_key:
169
169
  specification_version: 4
170
170
  summary: A toolkit to upgrade your next Rails application
171
171
  test_files: []
data/Gemfile.lock DELETED
@@ -1,82 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- next_rails (1.0.2)
5
- actionview
6
- colorize (>= 0.8.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionview (6.0.2.1)
12
- activesupport (= 6.0.2.1)
13
- builder (~> 3.1)
14
- erubi (~> 1.4)
15
- rails-dom-testing (~> 2.0)
16
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
17
- activesupport (6.0.2.1)
18
- concurrent-ruby (~> 1.0, >= 1.0.2)
19
- i18n (>= 0.7, < 2)
20
- minitest (~> 5.1)
21
- tzinfo (~> 1.1)
22
- zeitwerk (~> 2.2)
23
- builder (3.2.4)
24
- colorize (0.8.1)
25
- concurrent-ruby (1.1.5)
26
- crass (1.0.6)
27
- diff-lcs (1.3)
28
- docile (1.3.2)
29
- erubi (1.9.0)
30
- i18n (1.8.2)
31
- concurrent-ruby (~> 1.0)
32
- json (2.3.0)
33
- loofah (2.4.0)
34
- crass (~> 1.0.2)
35
- nokogiri (>= 1.5.9)
36
- mini_portile2 (2.4.0)
37
- minitest (5.14.0)
38
- nokogiri (1.10.7)
39
- mini_portile2 (~> 2.4.0)
40
- rails-dom-testing (2.0.3)
41
- activesupport (>= 4.2.0)
42
- nokogiri (>= 1.6)
43
- rails-html-sanitizer (1.3.0)
44
- loofah (~> 2.3)
45
- rake (10.5.0)
46
- rspec (3.8.0)
47
- rspec-core (~> 3.8.0)
48
- rspec-expectations (~> 3.8.0)
49
- rspec-mocks (~> 3.8.0)
50
- rspec-core (3.8.2)
51
- rspec-support (~> 3.8.0)
52
- rspec-expectations (3.8.4)
53
- diff-lcs (>= 1.2.0, < 2.0)
54
- rspec-support (~> 3.8.0)
55
- rspec-mocks (3.8.1)
56
- diff-lcs (>= 1.2.0, < 2.0)
57
- rspec-support (~> 3.8.0)
58
- rspec-support (3.8.2)
59
- simplecov (0.17.1)
60
- docile (~> 1.1)
61
- json (>= 1.8, < 3)
62
- simplecov-html (~> 0.10.0)
63
- simplecov-html (0.10.2)
64
- thread_safe (0.3.6)
65
- timecop (0.9.1)
66
- tzinfo (1.2.6)
67
- thread_safe (~> 0.1)
68
- zeitwerk (2.2.2)
69
-
70
- PLATFORMS
71
- ruby
72
-
73
- DEPENDENCIES
74
- bundler (~> 1.16)
75
- next_rails!
76
- rake (~> 10.0)
77
- rspec (~> 3.0)
78
- simplecov (~> 0.17.1)
79
- timecop (~> 0.9.1)
80
-
81
- BUNDLED WITH
82
- 1.17.3