Skip to content

Commit

Permalink
Drop ruby 2.x support (#139)
Browse files Browse the repository at this point in the history
Nokogiri requires 3.x so we need to upgrade our limitations.

Ruby 2 is also past end of life, so there's no reason to continue supporting it.
  • Loading branch information
marcqualie authored Feb 12, 2024
1 parent 5f8afc2 commit 0c3cf8d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ jobs:
strategy:
matrix:
ruby:
- "2.7.5"
- "3.0.3"
- "3.0.6"
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand All @@ -23,12 +22,13 @@ jobs:
bundler-cache: true
- name: Run rspec
run: bundle exec rake test

rubocop:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7.5"
- "3.0.6"
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down
6 changes: 3 additions & 3 deletions test/rails_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
require 'open3'

RAILS_VERSIONS = %w[
6.0.4.4
6.1.4.4
7.0.1
6.0.6.1
6.1.7.6
7.0.8
].freeze

RAILS_FLAGS = %w[
Expand Down

0 comments on commit 0c3cf8d

Please sign in to comment.