next_rails 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +16 -10
- data/CHANGELOG.md +24 -17
- data/CONTRIBUTING.md +60 -0
- data/README.md +27 -0
- data/lib/deprecation_tracker.rb +11 -2
- data/lib/next_rails/bundle_report.rb +30 -30
- data/lib/next_rails/gem_info.rb +4 -4
- data/lib/next_rails/version.rb +1 -1
- data/next_rails.gemspec +4 -3
- metadata +26 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1fdec8942101c58f6081b681319339b6ed5703dd14af0f1d43498afb894bba26
|
4
|
+
data.tar.gz: 32bfa4c31e2d53b9100e4a46a3fbf053ff90b38d15256867b3a5f4b6e4fc0d44
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a030398c55b7e09de54ad9607745410c14d1a64e8fa753e32dd0c41b5555640a9af23f31f9f40cb550fb1b11b8c461adf95727e281d6d05250089dd9ee8b509
|
7
|
+
data.tar.gz: 8b7d02f997ca2b7db31ff7e2c131e72df4ccb979979f792ecdefdf0f8500f619fb78a8187f4be712a40503af9bf27bc143678bfa27b95e52594fdc537132b3a0
|
data/.github/workflows/main.yml
CHANGED
@@ -1,20 +1,26 @@
|
|
1
1
|
name: Run rake task
|
2
2
|
|
3
|
-
on:
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- main
|
7
|
+
pull_request:
|
8
|
+
branches:
|
9
|
+
- main
|
4
10
|
|
5
11
|
jobs:
|
6
12
|
test:
|
7
13
|
runs-on: ubuntu-latest
|
8
14
|
strategy:
|
9
15
|
matrix:
|
10
|
-
ruby-version: [3.1, 2.7.5]
|
16
|
+
ruby-version: [3.1, 2.7.5, 2.3, 2.2, 2.1.9, 2.0.0]
|
11
17
|
|
12
18
|
steps:
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
19
|
+
- uses: actions/checkout@v2
|
20
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
21
|
+
uses: ruby/setup-ruby@v1
|
22
|
+
with:
|
23
|
+
ruby-version: ${{ matrix.ruby-version }}
|
24
|
+
bundler-cache: true
|
25
|
+
- name: Run rake task
|
26
|
+
run: bundle exec rake
|
data/CHANGELOG.md
CHANGED
@@ -1,38 +1,45 @@
|
|
1
|
-
# main [(unreleased)](https://github.com/fastruby/next_rails/compare/v1.0
|
1
|
+
# main [(unreleased)](https://github.com/fastruby/next_rails/compare/v1.2.0...main)
|
2
2
|
|
3
|
-
|
3
|
+
# v1.2.0 / 2022-08-12 [(commits)](https://github.com/fastruby/next_rails/compare/v1.1.0...v1.2.0)
|
4
4
|
|
5
|
-
|
5
|
+
- [FEATURE: Support Ruby versions as old as Ruby 2.0](https://github.com/fastruby/next_rails/pull/54)
|
6
6
|
|
7
|
-
|
7
|
+
- [FEATURE: Better documentation for contributing and releasing versions of this gem](https://github.com/fastruby/next_rails/pull/53)
|
8
8
|
|
9
|
-
|
9
|
+
# v1.1.0 / 2022-06-30 [(commits)](https://github.com/fastruby/next_rails/compare/v1.0.5...v1.1.0)
|
10
10
|
|
11
|
-
|
11
|
+
- [FEATURE: Try to find the latest **compatible** version of a gem if the latest version is not compatible with the desired Rails version when checking compatibility](https://github.com/fastruby/next_rails/pull/49)
|
12
12
|
|
13
|
-
|
13
|
+
- [FEATURE: Added option --version to get the version of the gem being used](https://github.com/fastruby/next_rails/pull/38)
|
14
14
|
|
15
|
-
|
15
|
+
- [Added github action workflow](https://github.com/fastruby/next_rails/pull/40)
|
16
16
|
|
17
|
-
|
17
|
+
- [FEATURE: Add support to use DeprecationTracker with Minitest](Add support to use DeprecationTracker with Minitest)
|
18
18
|
|
19
|
-
|
19
|
+
- [FEATURE: Add dependabot](https://github.com/fastruby/next_rails/pull/41)
|
20
20
|
|
21
|
+
- [DOCUMENTATION: Update the code of conduct link in PR template](https://github.com/fastruby/next_rails/pull/46)
|
22
|
+
|
23
|
+
- [DOCUMENTATION: Add FEATURE REQUEST and BUG REPORT templates ](https://github.com/fastruby/next_rails/pull/48)
|
24
|
+
|
25
|
+
- [BUGFIX: Make behavior arguments optional](https://github.com/fastruby/next_rails/pull/44)
|
26
|
+
|
27
|
+
- [FEATURE: Command line option to check for recommended ruby version for the desired Rails version](https://github.com/fastruby/next_rails/pull/39)
|
21
28
|
|
22
29
|
# v1.0.5 / 2022-03-29 [(commits)](https://github.com/fastruby/next_rails/compare/v1.0.4...v1.0.5)
|
23
30
|
|
24
|
-
|
25
|
-
|
26
|
-
|
31
|
+
- [FEATURE: Initialize the Gemfile.next.lock to avoid major version jumps when used without an initial Gemfile.next.lock](https://github.com/fastruby/next_rails/pull/25)
|
32
|
+
- [FEATURE: Drop `actionview` dependency because it is not really used](https://github.com/fastruby/next_rails/pull/26)
|
33
|
+
- [BUGFIX: If shitlist path does not exist, create it for the user of the gem](https://github.com/fastruby/next_rails/pull/37)
|
27
34
|
|
28
35
|
# v1.0.4 / 2021-04-09 [(commits)](https://github.com/fastruby/next_rails/compare/v1.0.3...v1.0.4)
|
29
36
|
|
30
|
-
|
37
|
+
- [BUGFIX: Fixes issue with `bundle_report` and `actionview`](https://github.com/fastruby/next_rails/pull/22)
|
31
38
|
|
32
39
|
# v1.0.3 / 2021-04-05 [(commits)](https://github.com/fastruby/next_rails/compare/v1.0.2...v1.0.3)
|
33
40
|
|
34
|
-
|
35
|
-
|
41
|
+
- [BUGFIX: Update README.md to better document this `ten_years_rails` fork](https://github.com/fastruby/next_rails/pull/11)
|
42
|
+
- [BUGFIX: Make ActionView an optional dependency](https://github.com/fastruby/next_rails/pull/6)
|
36
43
|
|
37
44
|
# v1.0.2 / 2020-01-20
|
38
45
|
|
@@ -40,4 +47,4 @@
|
|
40
47
|
|
41
48
|
# v1.0.0 / 2019-07-24
|
42
49
|
|
43
|
-
|
50
|
+
- Official Release
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
# Contributing to next_rails
|
2
|
+
|
3
|
+
Have a fix for a problem you've been running into or an idea for a new feature you think would be useful? Bug reports and pull requests are welcome on GitHub at [https://github.com/fastruby/next_rails](https://github.com/fastruby/next_rails).
|
4
|
+
|
5
|
+
Here's what you need to do:
|
6
|
+
|
7
|
+
- Read and understand the [Code of Conduct](https://github.com/fastruby/next_rails/blob/main/CODE_OF_CONDUCT.md).
|
8
|
+
- Fork this repo and clone your fork to somewhere on your machine.
|
9
|
+
- [Ensure that you have a working environment](#setting-up-your-environment)
|
10
|
+
- Read up on [run the tests](#running-all-tests).
|
11
|
+
- Open a new branch and write a failing test for the feature or bug fix you plan on implementing.
|
12
|
+
- [Update the changelog when applicable](#a-word-on-the-changelog).
|
13
|
+
- Push to your fork and submit a pull request.
|
14
|
+
- [Make sure the test suite passes on GitHub Actions and make any necessary changes to your branch to bring it to green.](#continuous-integration).
|
15
|
+
|
16
|
+
## Setting up your environment
|
17
|
+
To install the dependencies, run:
|
18
|
+
|
19
|
+
```bash
|
20
|
+
bin/setup
|
21
|
+
```
|
22
|
+
|
23
|
+
You can also run `bin/console` for an interactive prompt that will allow you to experiment with the gem.
|
24
|
+
|
25
|
+
To install this gem onto your local machine, run:
|
26
|
+
|
27
|
+
`bundle exec rake install`.
|
28
|
+
|
29
|
+
### Running all tests
|
30
|
+
|
31
|
+
To run all of the tests, simply run:
|
32
|
+
|
33
|
+
```bash
|
34
|
+
bundle exec rake
|
35
|
+
```
|
36
|
+
|
37
|
+
## A word on the changelog
|
38
|
+
|
39
|
+
You may also notice that we have a changelog in the form of [CHANGELOG.md](CHANGELOG.md). We use a format based on [Keep A Changelog](https://keepachangelog.com/en/1.0.0/).
|
40
|
+
|
41
|
+
The important things to keep in mind are:
|
42
|
+
|
43
|
+
- If your PR closes any open GitHub issue, make sure you include `Closes #XXXX` in your comment.
|
44
|
+
- New additions get added under the main (unreleased) heading;
|
45
|
+
- Attach a link to the PR with the following format:
|
46
|
+
|
47
|
+
* [<FEATURE | BUGFIX | CHORE>: Description of changes](github.com/link/to/pr).
|
48
|
+
|
49
|
+
## When Submitting a Pull Request:
|
50
|
+
|
51
|
+
* If your PR closes any open GitHub issues, please include `Closes #XXXX` in your comment.
|
52
|
+
* Please include a summary of the change and which issue is fixed or which feature is introduced.
|
53
|
+
* If changes to the behavior are made, clearly describe what are the changes and why.
|
54
|
+
* If changes to the UI are made, please include screenshots of the before and after.
|
55
|
+
|
56
|
+
## Continuous integration
|
57
|
+
|
58
|
+
After opening your Pull Request, please make sure that all tests pass on the CI, to make sure your changes work in all possible environments. GitHub Actions will kick in after you push up a branch or open a PR.
|
59
|
+
|
60
|
+
If the build fails, click on a failed job and scroll through its output to verify what is the problem. Push your changes to your branch until the build is green.
|
data/README.md
CHANGED
@@ -140,6 +140,33 @@ The Gemfile.next.lock is initialized with the contents of your existing
|
|
140
140
|
Gemfile.lock lock file. We initialize the Gemfile.next.lock to prevent
|
141
141
|
major version jumps when running the next version of Rails.
|
142
142
|
|
143
|
+
## Contributing
|
144
|
+
|
145
|
+
Have a fix for a problem you've been running into or an idea for a new feature you think would be useful? Want to see how you can support `next_rails`?
|
146
|
+
|
147
|
+
Take a look at the [Contributing document](CONTRIBUTING.md) for instructions to set up the repo on your machine!
|
148
|
+
|
149
|
+
## Releases
|
150
|
+
|
151
|
+
`next_rails` adheres to [semver](https://semver.org). So given a version number MAJOR.MINOR.PATCH, we will increment the:
|
152
|
+
|
153
|
+
1. MAJOR version when you make incompatible API changes,
|
154
|
+
2. MINOR version when you add functionality in a backwards compatible manner, and
|
155
|
+
3. PATCH version when you make backwards compatible bug fixes.
|
156
|
+
|
157
|
+
Here are the steps to release a new version:
|
158
|
+
|
159
|
+
1. Update the `version.rb` file with the proper version number
|
160
|
+
2. Update `CHANGELOG.md` to have the right headers
|
161
|
+
3. Commit your changes to a `release/v-1-1-0` branch
|
162
|
+
4. Push your changes and submit a pull request
|
163
|
+
5. Merge your pull request to the `main` branch
|
164
|
+
6. Git tag the latest version of the `main` branch (`git tag v1.1.0`)
|
165
|
+
7. Push tags to GitHub (`git push --tags`)
|
166
|
+
8. Build the gem (`gem build next_rails.gemspec`)
|
167
|
+
9. Push the .gem package to Rubygems.org (`gem push next_rails-1.1.0.gem`)
|
168
|
+
10. You are all done!
|
169
|
+
|
143
170
|
## License
|
144
171
|
|
145
172
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/lib/deprecation_tracker.rb
CHANGED
@@ -47,7 +47,11 @@ class DeprecationTracker
|
|
47
47
|
end
|
48
48
|
|
49
49
|
# There are two forms of the `warn` method: one for class Kernel and one for instances of Kernel (i.e., every Object)
|
50
|
-
Object.prepend
|
50
|
+
if Object.respond_to?(:prepend)
|
51
|
+
Object.prepend(KernelWarnTracker)
|
52
|
+
else
|
53
|
+
Object.extend(KernelWarnTracker)
|
54
|
+
end
|
51
55
|
|
52
56
|
# Ruby 2.2 and lower doesn't appear to allow overriding of Kernel.warn using `singleton_class.prepend`.
|
53
57
|
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.3.0")
|
@@ -198,7 +202,12 @@ class DeprecationTracker
|
|
198
202
|
hash[bucket] = messages.sort
|
199
203
|
end
|
200
204
|
|
201
|
-
|
205
|
+
# not using `to_h` here to support older ruby versions
|
206
|
+
{}.tap do |h|
|
207
|
+
normalized.reject {|_key, value| value.empty? }.sort_by {|key, _value| key }.each do |k ,v|
|
208
|
+
h[k] = v
|
209
|
+
end
|
210
|
+
end
|
202
211
|
end
|
203
212
|
|
204
213
|
def read_shitlist
|
@@ -6,7 +6,7 @@ require "net/http"
|
|
6
6
|
|
7
7
|
module NextRails
|
8
8
|
class BundleReport
|
9
|
-
def self.compatibility(rails_version
|
9
|
+
def self.compatibility(rails_version: nil, include_rails_gems: nil)
|
10
10
|
incompatible_gems = NextRails::GemInfo.all.reject do |gem|
|
11
11
|
gem.compatible_with_rails?(rails_version: rails_version) || (!include_rails_gems && gem.from_rails?)
|
12
12
|
end.sort_by { |gem| gem.name }
|
@@ -15,36 +15,36 @@ module NextRails
|
|
15
15
|
|
16
16
|
incompatible_gems_by_state = incompatible_gems.group_by { |gem| gem.state(rails_version) }
|
17
17
|
|
18
|
-
template =
|
19
|
-
|
20
|
-
|
21
|
-
|
18
|
+
template = <<-ERB
|
19
|
+
<% if incompatible_gems_by_state[:found_compatible] -%>
|
20
|
+
<%= "=> Incompatible with Rails #{rails_version} (with new versions that are compatible):".white.bold %>
|
21
|
+
<%= "These gems will need to be upgraded before upgrading to Rails #{rails_version}.".italic %>
|
22
22
|
|
23
|
-
|
24
|
-
|
25
|
-
|
23
|
+
<% incompatible_gems_by_state[:found_compatible].each do |gem| -%>
|
24
|
+
<%= gem_header(gem) %> - upgrade to <%= gem.latest_compatible_version.version %>
|
25
|
+
<% end -%>
|
26
26
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
27
|
+
<% end -%>
|
28
|
+
<% if incompatible_gems_by_state[:incompatible] -%>
|
29
|
+
<%= "=> Incompatible with Rails #{rails_version} (with no new compatible versions):".white.bold %>
|
30
|
+
<%= "These gems will need to be removed or replaced before upgrading to Rails #{rails_version}.".italic %>
|
31
31
|
|
32
|
-
|
33
|
-
|
34
|
-
|
32
|
+
<% incompatible_gems_by_state[:incompatible].each do |gem| -%>
|
33
|
+
<%= gem_header(gem) %> - new version, <%= gem.latest_version.version %>, is not compatible with Rails #{rails_version}
|
34
|
+
<% end -%>
|
35
35
|
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
36
|
+
<% end -%>
|
37
|
+
<% if incompatible_gems_by_state[:no_new_version] -%>
|
38
|
+
<%= "=> Incompatible with Rails #{rails_version} (with no new versions):".white.bold %>
|
39
|
+
<%= "These gems will need to be upgraded by us or removed before upgrading to Rails #{rails_version}.".italic %>
|
40
|
+
<%= "This list is likely to contain internal gems, like Cuddlefish.".italic %>
|
41
41
|
|
42
|
-
|
43
|
-
|
44
|
-
|
42
|
+
<% incompatible_gems_by_state[:no_new_version].each do |gem| -%>
|
43
|
+
<%= gem_header(gem) %> - new version not found
|
44
|
+
<% end -%>
|
45
45
|
|
46
|
-
|
47
|
-
|
46
|
+
<% end -%>
|
47
|
+
<%= incompatible_gems.length.to_s.red %> gems incompatible with Rails <%= rails_version %>
|
48
48
|
ERB
|
49
49
|
|
50
50
|
puts ERB.new(template, nil, "-").result(binding)
|
@@ -104,15 +104,15 @@ module NextRails
|
|
104
104
|
out_of_date_gems.each do |_gem|
|
105
105
|
header = "#{_gem.name} #{_gem.version}"
|
106
106
|
|
107
|
-
puts
|
108
|
-
|
107
|
+
puts <<-MESSAGE
|
108
|
+
#{header.bold.white}: released #{_gem.age} (latest version, #{_gem.latest_version.version}, released #{_gem.latest_version.age})
|
109
109
|
MESSAGE
|
110
110
|
end
|
111
111
|
|
112
112
|
puts ""
|
113
|
-
puts
|
114
|
-
|
115
|
-
|
113
|
+
puts <<-MESSAGE
|
114
|
+
#{"#{sourced_from_git.count}".yellow} gems are sourced from git
|
115
|
+
#{"#{out_of_date_gems.length}".red} of the #{gems.count} gems are out-of-date (#{percentage_out_of_date}%)
|
116
116
|
MESSAGE
|
117
117
|
end
|
118
118
|
end
|
data/lib/next_rails/gem_info.rb
CHANGED
@@ -88,15 +88,15 @@ module NextRails
|
|
88
88
|
end
|
89
89
|
end
|
90
90
|
|
91
|
-
def compatible_with_rails?(rails_version:)
|
91
|
+
def compatible_with_rails?(rails_version: nil)
|
92
92
|
unsatisfied_rails_dependencies(rails_version: rails_version).empty?
|
93
93
|
end
|
94
94
|
|
95
|
-
def unsatisfied_rails_dependencies(rails_version:)
|
95
|
+
def unsatisfied_rails_dependencies(rails_version: nil)
|
96
96
|
spec_compatible_with_rails?(specification: gem_specification, rails_version: rails_version)
|
97
97
|
end
|
98
98
|
|
99
|
-
def find_latest_compatible(rails_version:)
|
99
|
+
def find_latest_compatible(rails_version: nil)
|
100
100
|
dependency = Gem::Dependency.new(@name)
|
101
101
|
fetcher = Gem::SpecFetcher.new
|
102
102
|
|
@@ -129,7 +129,7 @@ module NextRails
|
|
129
129
|
end
|
130
130
|
end
|
131
131
|
|
132
|
-
def spec_compatible_with_rails?(specification
|
132
|
+
def spec_compatible_with_rails?(specification: nil, rails_version: nil)
|
133
133
|
rails_dependencies = specification.runtime_dependencies.select {|dependency| RAILS_GEMS.include?(dependency.name) }
|
134
134
|
|
135
135
|
rails_dependencies.reject do |rails_dependency|
|
data/lib/next_rails/version.rb
CHANGED
data/next_rails.gemspec
CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
14
14
|
spec.homepage = "https://github.com/fastruby/next_rails"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
|
-
spec.required_ruby_version = ">= 2.
|
17
|
+
spec.required_ruby_version = ">= 2.0"
|
18
18
|
|
19
19
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
20
20
|
f.match(%r{^(test|spec|features)/})
|
@@ -25,9 +25,10 @@ Gem::Specification.new do |spec|
|
|
25
25
|
|
26
26
|
spec.add_dependency "colorize", ">= 0.8.1"
|
27
27
|
spec.add_development_dependency "bundler", ">= 1.16", "< 3.0"
|
28
|
-
spec.add_development_dependency "rake"
|
28
|
+
spec.add_development_dependency "rake"
|
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_development_dependency "
|
32
|
+
spec.add_development_dependency "rexml", "3.1.7.3" # limited on purpose, new versions don't work with old rubies
|
33
|
+
spec.add_development_dependency "webmock", "3.14.0" # limited on purpose, new versions don't work with old rubies
|
33
34
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: next_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ernesto Tagwerker
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-
|
12
|
+
date: 2022-08-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: colorize
|
@@ -49,16 +49,16 @@ dependencies:
|
|
49
49
|
name: rake
|
50
50
|
requirement: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '0'
|
55
55
|
type: :development
|
56
56
|
prerelease: false
|
57
57
|
version_requirements: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - "
|
59
|
+
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '0'
|
62
62
|
- !ruby/object:Gem::Dependency
|
63
63
|
name: rspec
|
64
64
|
requirement: !ruby/object:Gem::Requirement
|
@@ -101,20 +101,34 @@ dependencies:
|
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
103
|
version: 0.9.1
|
104
|
+
- !ruby/object:Gem::Dependency
|
105
|
+
name: rexml
|
106
|
+
requirement: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 3.1.7.3
|
111
|
+
type: :development
|
112
|
+
prerelease: false
|
113
|
+
version_requirements: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 3.1.7.3
|
104
118
|
- !ruby/object:Gem::Dependency
|
105
119
|
name: webmock
|
106
120
|
requirement: !ruby/object:Gem::Requirement
|
107
121
|
requirements:
|
108
|
-
- -
|
122
|
+
- - '='
|
109
123
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
124
|
+
version: 3.14.0
|
111
125
|
type: :development
|
112
126
|
prerelease: false
|
113
127
|
version_requirements: !ruby/object:Gem::Requirement
|
114
128
|
requirements:
|
115
|
-
- -
|
129
|
+
- - '='
|
116
130
|
- !ruby/object:Gem::Version
|
117
|
-
version:
|
131
|
+
version: 3.14.0
|
118
132
|
description: A set of handy tools to upgrade your Rails application and keep it up
|
119
133
|
to date
|
120
134
|
email:
|
@@ -140,6 +154,7 @@ files:
|
|
140
154
|
- CHANGELOG.md
|
141
155
|
- CODEOWNERS
|
142
156
|
- CODE_OF_CONDUCT.md
|
157
|
+
- CONTRIBUTING.md
|
143
158
|
- Gemfile
|
144
159
|
- LICENSE.txt
|
145
160
|
- README.md
|
@@ -172,7 +187,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
172
187
|
requirements:
|
173
188
|
- - ">="
|
174
189
|
- !ruby/object:Gem::Version
|
175
|
-
version: 2.
|
190
|
+
version: '2.0'
|
176
191
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
177
192
|
requirements:
|
178
193
|
- - ">="
|