Skip to content

Commit

Permalink
Merge pull request #47 from DannyBen/remove/ruby27
Browse files Browse the repository at this point in the history
Drop support for Ruby 2.7
  • Loading branch information
DannyBen committed Jan 9, 2024
2 parents 92c98eb + 5b8e5a6 commit df574ec
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 @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

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

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.7
TargetRubyVersion: 3.0

# Allow some methods to start with `set_` or `get_`
Naming/AccessorMethodName:
Expand Down
2 changes: 1 addition & 1 deletion audio_addict.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.homepage = 'https://github.com/dannyben/audio_addict'
s.license = 'MIT'

s.required_ruby_version = '>= 2.7.0'
s.required_ruby_version = '>= 3.0.0'

s.add_runtime_dependency 'colsole', '>= 0.8.1', '< 2'
s.add_runtime_dependency 'httparty', '~> 0.21'
Expand Down

0 comments on commit df574ec

Please sign in to comment.