Skip to content

Commit 1fed3aa

Browse files
committed
RbConfig::LIMITS only provide after Ruby 2.5
1 parent 18cc5e9 commit 1fed3aa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: macos-latest
88
strategy:
99
matrix:
10-
ruby: [ '2.6.x', '2.5.x', '2.4.x' ]
10+
ruby: [ '2.6.x', '2.5.x' ]
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: Set up Ruby

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
ruby: [ '2.6.x', '2.5.x', '2.4.x' ]
10+
ruby: [ '2.6.x', '2.5.x' ]
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: Set up Ruby

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: windows-latest
88
strategy:
99
matrix:
10-
ruby: [ '2.6.x', '2.5.x', '2.4.x' ]
10+
ruby: [ '2.6.x', '2.5.x' ]
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: Set up Ruby

stringio.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
2323
s.files = ["README.md", "ext/stringio/extconf.rb", "ext/stringio/stringio.c"]
2424
s.homepage = "https://github.com/ruby/stringio"
2525
s.licenses = ["BSD-2-Clause"]
26-
s.required_ruby_version = ">= 2.4"
26+
s.required_ruby_version = ">= 2.5"
2727
s.rubygems_version = "2.6.11"
2828
s.summary = "Pseudo IO on String"
2929

0 commit comments

Comments
 (0)