Skip to content

Commit 941bcac

Browse files
committed
Drop support for Ruby 2.6 and 2.7
1 parent 776ade6 commit 941bcac

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,8 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-20.04] # macos-latest
12-
ruby-version: [2.6, 2.7, 3.0, 3.1, 3.2, jruby-9.3, jruby-9.4, truffleruby]
12+
ruby-version: [3.0, 3.1, 3.2, jruby-9.3, jruby-9.4, truffleruby]
1313
include:
14-
- os: macos-latest
15-
ruby-version: 2.6
16-
- os: macos-latest
17-
ruby-version: 2.7
1814
- os: macos-latest
1915
ruby-version: 3.0
2016
- os: macos-latest

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require:
66
- rubocop-rake
77

88
AllCops:
9-
TargetRubyVersion: 2.6
9+
TargetRubyVersion: 3.0
1010
NewCops: enable
1111
Include:
1212
- 'lib/**/*'

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ We created a demo project for Rails 4 that uses the latest version of this libra
2020

2121
### Supported Ruby Versions
2222

23-
* 2.6
24-
* 2.7
2523
* 3.0
2624
* 3.1
2725
* 3.2

ruby-saml.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
2020
s.rdoc_options = ["--charset=UTF-8"]
2121
s.require_paths = ["lib"]
2222
s.rubygems_version = %q{1.3.7}
23-
s.required_ruby_version = '>= 2.6.0'
23+
s.required_ruby_version = '>= 3.0'
2424
s.summary = %q{SAML Ruby Tookit}
2525

2626
s.add_dependency('nokogiri', '>= 1.13.10')

0 commit comments

Comments
 (0)