next_rails 1.1.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e37620e9fa92eea06f9faa05a1ace3cd1b9ff2585da96b838e165f1b98b06129
4
- data.tar.gz: 47335d3ccaf72cfb828deeeab67ae93700fe83f38a7aeb7194ddccad5ebb0f3d
3
+ metadata.gz: 822e7ed8bda705fc5a9ff1a0f8ccbba91901e01dd279760e7787a7ef1df3f38f
4
+ data.tar.gz: fd6e3bb66afd86c54fba7e5352245ada2f3ec0520cd88063d11a938d908a4d90
5
5
  SHA512:
6
- metadata.gz: d449a18c9279d4bc1a2889440843c800dc5f8b1e1d50cacdb2ace1cdebb5b7eb7c14fb6247059e30f7e39412bbb97f15d5ec7b674320bf8bc8c840edf1144fa2
7
- data.tar.gz: 8b22f60cdb23275ee943e68835374ea18c54d4ecb1718db2f2e9b0b701bad9a73da2dcc73c03438ed0269b610ed67bbcd7b5bd2eb9906d2c758394abbe0bf8e3
6
+ metadata.gz: 2da9a58d3922e7d266bc9769a5cfdfee57e1e5d21c2d31be9ff5f3b6b8c109e08b94dfb34eb894d516906921edcddafb5a26b42aab82f3c2f16344820877d133
7
+ data.tar.gz: e8886320ac2047e9d83d4c6fd67aaccf14b9aa735102dc4eb2755e78cb2dbe359f221ae768ab5c9e2eba44731ba91222e370ff4bea4bee5cbad966e0b5ac2678
@@ -1,20 +1,26 @@
1
1
  name: Run rake task
2
2
 
3
- on: [push, pull_request]
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
- - uses: actions/checkout@v2
14
- - name: Set up Ruby ${{ matrix.ruby-version }}
15
- uses: ruby/setup-ruby@v1
16
- with:
17
- ruby-version: ${{ matrix.ruby-version }}
18
- bundler-cache: true
19
- - name: Run rake task
20
- run: bundle exec rake
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,53 @@
1
- # main [(unreleased)](https://github.com/fastruby/next_rails/compare/v1.0.4...main)
1
+ # main [(unreleased)](https://github.com/fastruby/next_rails/compare/v1.2.1...main)
2
2
 
3
- * [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)
3
+ # v1.2.1 / 2022-09-26 [(commits)](https://github.com/fastruby/next_rails/compare/v1.2.0...v1.2.1)
4
4
 
5
- * [FEATURE: Added option --version to get the version of the gem being used](https://github.com/fastruby/next_rails/pull/38)
5
+ - [BUGFIX: SimpleCov was not reporting accurately due to a bug in the spec helper code](https://github.com/fastruby/next_rails/pull/66)
6
6
 
7
- * [Added github action workflow](https://github.com/fastruby/next_rails/pull/40)
7
+ - [FEATURE: Better documentation for contributing and releasing versions of this gem](https://github.com/fastruby/next_rails/pull/53)
8
8
 
9
- * [FEATURE: Add support to use DeprecationTracker with Minitest](Add support to use DeprecationTracker with Minitest)
9
+ - [BUGFIX: bundle_report outdated was giving an exception due to missing method latest_version](https://github.com/fastruby/next_rails/pull/62)
10
10
 
11
- * [FEATURE: Add dependabot](https://github.com/fastruby/next_rails/pull/41)
11
+ # v1.2.0 / 2022-08-12 [(commits)](https://github.com/fastruby/next_rails/compare/v1.1.0...v1.2.0)
12
12
 
13
- * [DOCUMENTATION: Update the code of conduct link in PR template](https://github.com/fastruby/next_rails/pull/46)
13
+ - [FEATURE: Support Ruby versions as old as Ruby 2.0](https://github.com/fastruby/next_rails/pull/54)
14
14
 
15
- * [DOCUMENTATION: Add FEATURE REQUEST and BUG REPORT templates ](https://github.com/fastruby/next_rails/pull/48)
15
+ - [FEATURE: Better documentation for contributing and releasing versions of this gem](https://github.com/fastruby/next_rails/pull/53)
16
16
 
17
- * [BUGFIX: Make behavior arguments optional](https://github.com/fastruby/next_rails/pull/44)
17
+ # v1.1.0 / 2022-06-30 [(commits)](https://github.com/fastruby/next_rails/compare/v1.0.5...v1.1.0)
18
18
 
19
- * [FEATURE: Command line option to check for recommended ruby version for the desired Rails version](https://github.com/fastruby/next_rails/pull/39)
19
+ - [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)
20
20
 
21
+ - [FEATURE: Added option --version to get the version of the gem being used](https://github.com/fastruby/next_rails/pull/38)
22
+
23
+ - [Added github action workflow](https://github.com/fastruby/next_rails/pull/40)
24
+
25
+ - [FEATURE: Add support to use DeprecationTracker with Minitest](Add support to use DeprecationTracker with Minitest)
26
+
27
+ - [FEATURE: Add dependabot](https://github.com/fastruby/next_rails/pull/41)
28
+
29
+ - [DOCUMENTATION: Update the code of conduct link in PR template](https://github.com/fastruby/next_rails/pull/46)
30
+
31
+ - [DOCUMENTATION: Add FEATURE REQUEST and BUG REPORT templates ](https://github.com/fastruby/next_rails/pull/48)
32
+
33
+ - [BUGFIX: Make behavior arguments optional](https://github.com/fastruby/next_rails/pull/44)
34
+
35
+ - [FEATURE: Command line option to check for recommended ruby version for the desired Rails version](https://github.com/fastruby/next_rails/pull/39)
21
36
 
22
37
  # v1.0.5 / 2022-03-29 [(commits)](https://github.com/fastruby/next_rails/compare/v1.0.4...v1.0.5)
23
38
 
24
- * [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)
25
- * [FEATURE: Drop `actionview` dependency because it is not really used](https://github.com/fastruby/next_rails/pull/26)
26
- * [BUGFIX: If shitlist path does not exist, create it for the user of the gem](https://github.com/fastruby/next_rails/pull/37)
39
+ - [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)
40
+ - [FEATURE: Drop `actionview` dependency because it is not really used](https://github.com/fastruby/next_rails/pull/26)
41
+ - [BUGFIX: If shitlist path does not exist, create it for the user of the gem](https://github.com/fastruby/next_rails/pull/37)
27
42
 
28
43
  # v1.0.4 / 2021-04-09 [(commits)](https://github.com/fastruby/next_rails/compare/v1.0.3...v1.0.4)
29
44
 
30
- * [BUGFIX: Fixes issue with `bundle_report` and `actionview`](https://github.com/fastruby/next_rails/pull/22)
45
+ - [BUGFIX: Fixes issue with `bundle_report` and `actionview`](https://github.com/fastruby/next_rails/pull/22)
31
46
 
32
47
  # v1.0.3 / 2021-04-05 [(commits)](https://github.com/fastruby/next_rails/compare/v1.0.2...v1.0.3)
33
48
 
34
- * [BUGFIX: Update README.md to better document this `ten_years_rails` fork](https://github.com/fastruby/next_rails/pull/11)
35
- * [BUGFIX: Make ActionView an optional dependency](https://github.com/fastruby/next_rails/pull/6)
49
+ - [BUGFIX: Update README.md to better document this `ten_years_rails` fork](https://github.com/fastruby/next_rails/pull/11)
50
+ - [BUGFIX: Make ActionView an optional dependency](https://github.com/fastruby/next_rails/pull/6)
36
51
 
37
52
  # v1.0.2 / 2020-01-20
38
53
 
@@ -40,4 +55,4 @@
40
55
 
41
56
  # v1.0.0 / 2019-07-24
42
57
 
43
- * Official Release
58
+ - 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).
@@ -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(KernelWarnTracker)
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
- normalized.reject {|_key, value| value.empty? }.sort_by {|key, _value| key }.to_h
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:, include_rails_gems:)
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 = <<~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 %>
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
- <% incompatible_gems_by_state[:found_compatible].each do |gem| -%>
24
- <%= gem_header(gem) %> - upgrade to <%= gem.latest_compatible_version.version %>
25
- <% end -%>
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
- <% 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 %>
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
- <% 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 -%>
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
- <% 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 %>
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
- <% incompatible_gems_by_state[:no_new_version].each do |gem| -%>
43
- <%= gem_header(gem) %> - new version not found
44
- <% end -%>
42
+ <% incompatible_gems_by_state[:no_new_version].each do |gem| -%>
43
+ <%= gem_header(gem) %> - new version not found
44
+ <% end -%>
45
45
 
46
- <% end -%>
47
- <%= incompatible_gems.length.to_s.red %> gems incompatible with Rails <%= rails_version %>
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 <<~MESSAGE
108
- #{header.bold.white}: released #{_gem.age} (latest version, #{_gem.latest_version.version}, released #{_gem.latest_version.age})
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 <<~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}%)
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
@@ -88,15 +88,24 @@ module NextRails
88
88
  end
89
89
  end
90
90
 
91
- def compatible_with_rails?(rails_version:)
91
+ def latest_version
92
+ latest_gem_specification = Gem.latest_spec_for(name)
93
+ return NullGemInfo.new unless latest_gem_specification
94
+
95
+ GemInfo.new(latest_gem_specification)
96
+ rescue
97
+ NullGemInfo.new
98
+ end
99
+
100
+ def compatible_with_rails?(rails_version: nil)
92
101
  unsatisfied_rails_dependencies(rails_version: rails_version).empty?
93
102
  end
94
103
 
95
- def unsatisfied_rails_dependencies(rails_version:)
104
+ def unsatisfied_rails_dependencies(rails_version: nil)
96
105
  spec_compatible_with_rails?(specification: gem_specification, rails_version: rails_version)
97
106
  end
98
107
 
99
- def find_latest_compatible(rails_version:)
108
+ def find_latest_compatible(rails_version: nil)
100
109
  dependency = Gem::Dependency.new(@name)
101
110
  fetcher = Gem::SpecFetcher.new
102
111
 
@@ -129,7 +138,7 @@ module NextRails
129
138
  end
130
139
  end
131
140
 
132
- def spec_compatible_with_rails?(specification:, rails_version:)
141
+ def spec_compatible_with_rails?(specification: nil, rails_version: nil)
133
142
  rails_dependencies = specification.runtime_dependencies.select {|dependency| RAILS_GEMS.include?(dependency.name) }
134
143
 
135
144
  rails_dependencies.reject do |rails_dependency|
@@ -1,3 +1,3 @@
1
1
  module NextRails
2
- VERSION = "1.1.0"
2
+ VERSION = "1.2.1"
3
3
  end
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.3.0"
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", "~> 13.0"
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 "webmock"
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.16.2" # 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.1.0
4
+ version: 1.2.1
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-06-30 00:00:00.000000000 Z
12
+ date: 2022-09-26 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: '13.0'
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: '13.0'
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: '0'
124
+ version: 3.16.2
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: '0'
131
+ version: 3.16.2
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.3.0
190
+ version: '2.0'
176
191
  required_rubygems_version: !ruby/object:Gem::Requirement
177
192
  requirements:
178
193
  - - ">="