Skip to content

Commit 0c3cf8d

Browse files
authored
Drop ruby 2.x support (#139)
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.
1 parent 5f8afc2 commit 0c3cf8d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
ruby:
15-
- "2.7.5"
16-
- "3.0.3"
15+
- "3.0.6"
1716
steps:
1817
- uses: actions/checkout@v2
1918
- name: Set up Ruby
@@ -23,12 +22,13 @@ jobs:
2322
bundler-cache: true
2423
- name: Run rspec
2524
run: bundle exec rake test
25+
2626
rubocop:
2727
runs-on: ubuntu-latest
2828
strategy:
2929
matrix:
3030
ruby:
31-
- "2.7.5"
31+
- "3.0.6"
3232
steps:
3333
- uses: actions/checkout@v2
3434
- name: Set up Ruby

test/rails_test.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
require 'open3'
77

88
RAILS_VERSIONS = %w[
9-
6.0.4.4
10-
6.1.4.4
11-
7.0.1
9+
6.0.6.1
10+
6.1.7.6
11+
7.0.8
1212
].freeze
1313

1414
RAILS_FLAGS = %w[

0 commit comments

Comments
 (0)