Skip to content

Commit

Permalink
Merge pull request #41 from DannyBen/drop/ruby2-support
Browse files Browse the repository at this point in the history
Drop support for Ruby 2.x
  • Loading branch information
DannyBen authored Jul 11, 2023
2 parents 3701d29 + 0d0c739 commit f7ccce6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
redis: { image: redis, ports: ["6379:6379"] }

strategy:
matrix: { ruby: ['2.7', '3.0', '3.1', '3.2', head] }
matrix: { ruby: ['3.0', '3.1', '3.2', head] }

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inherit_gem:
- rspec.yml

AllCops:
TargetRubyVersion: 2.6
TargetRubyVersion: 3.0
SuggestExtensions: false
Exclude:
- 'dev/**/*'
Expand Down
2 changes: 1 addition & 1 deletion rspec_approvals.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.files = Dir['README.md', 'lib/**/*.*']
s.homepage = 'https://github.com/DannyBen/rspec_approvals'
s.license = 'MIT'
s.required_ruby_version = '>= 2.7'
s.required_ruby_version = '>= 3.0'

s.add_runtime_dependency 'colsole', '>= 0.8.1', '< 2'
s.add_runtime_dependency 'diffy', '~> 3.4'
Expand Down

0 comments on commit f7ccce6

Please sign in to comment.