Skip to content

Commit

Permalink
Drop Ruby 2.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
tagliala committed Sep 1, 2022
1 parent be3dc59 commit 305e8a1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.5', '2.6', '2.7', '3.0', '3.1']
ruby-version: ['2.6', '2.7', '3.0', '3.1']
gemfile: [ rails_5.2, rails_6.0, rails_6.1, rails_7.0 ]
experimental: [false]

Expand All @@ -37,8 +37,6 @@ jobs:
experimental: true

exclude:
- ruby-version: '2.5'
gemfile: rails_7.0
- ruby-version: '2.6'
gemfile: rails_7.0
- ruby-version: '2.7'
Expand Down
1 change: 0 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ require:

AllCops:
TargetRailsVersion: 5.2
TargetRubyVersion: 2.5
NewCops: enable
Exclude:
- 'gemfiles/**/*'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 13.0.0 / unreleased

* [FEATURE] Replace Addressable gem with `URI::DEFAULT_PARSER` ([#268](https://github.com/enriclluelles/route_translator/pull/234))
* [FEATURE] Drop Ruby 2.5 support
* [ENHANCEMENT] Update development dependencies

## 12.1.0 / 2021-12-20
Expand Down
10 changes: 5 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ source 'https://rubygems.org'

gemspec

gem 'rubocop', '~> 1.28'
gem 'rubocop-minitest', '~> 0.19'
gem 'rubocop-performance', '~> 1.13'
gem 'rubocop-rails', '~> 2.14'
gem 'rubocop-rake', '~> 0.6'
gem 'rubocop', '~> 1.36'
gem 'rubocop-minitest', '~> 0.21.1'
gem 'rubocop-performance', '~> 1.14'
gem 'rubocop-rails', '~> 2.15'
gem 'rubocop-rake', '~> 0.6.0'
2 changes: 1 addition & 1 deletion route_translator.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
spec.files = `git ls-files -z -- {CHANGELOG.md,LICENSE,README.md,lib}`.split("\x0")
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 2.5'
spec.required_ruby_version = '>= 2.6'

spec.add_runtime_dependency 'actionpack', '>= 5.2', '< 7.1'
spec.add_runtime_dependency 'activesupport', '>= 5.2', '< 7.1'
Expand Down

0 comments on commit 305e8a1

Please sign in to comment.