Skip to content

Commit

Permalink
chore!: drop official support for Ruby 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
bajankristof committed Apr 26, 2024
1 parent 74e8ab1 commit accc626
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
ruby-version: '3.3'
bundler-cache: true
rubygems: latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0']
ruby-version: ['2.7', '3.3']
ffmpeg-version: ['6.0.1', '5.1.1', '4.4.1']

steps:
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ inherit_from: .rubocop_todo.yml
AllCops:
NewCops: enable
SuggestExtensions: false
TargetRubyVersion: 2.6
TargetRubyVersion: 2.7

Metrics/AbcSize:
Enabled: false
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Simple yet powerful wrapper around the ffmpeg command for reading metadata and t

### Ruby

Only guaranteed to work with Ruby 2.6 or later.
Only guaranteed to work with Ruby 2.7 or later.

### ffmpeg

Expand Down
2 changes: 1 addition & 1 deletion ffmpeg.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.homepage = 'https://github.com/instructure/ffmpeg'
s.summary = 'Wraps ffmpeg to read metadata and transcodes videos.'

s.required_ruby_version = '>= 2.6'
s.required_ruby_version = '>= 2.7'

s.add_dependency('multi_json', '~> 1.8')

Expand Down

0 comments on commit accc626

Please sign in to comment.