Skip to content

Commit adfb216

Browse files
committed
update Ruby
1 parent 02fe132 commit adfb216

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
ruby: [ "2.7", "3.0" ]
14+
ruby: ["3.1", "4.0"]
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout code

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3", "3.4"]
14+
ruby: ["3.1", "3.2", "3.3", "3.4", "4.0"]
1515
runs-on: ubuntu-latest
1616
env:
1717
FERRUM_PROCESS_TIMEOUT: 25

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AllCops:
2-
TargetRubyVersion: 2.7
2+
TargetRubyVersion: 3.1
33
NewCops: enable
44
SuggestExtensions: false
55

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
gem "byebug", "~> 11.0", platforms: %i[mri mingw x64_mingw]
5+
gem "byebug", "~> 11.0", platforms: %i[mri windows]
66
gem "chunky_png", "~> 1.3"
77
gem "image_size", "~> 2.0"
88
gem "kramdown", "~> 2.0", require: false

ferrum.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
"rubygems_mfa_required" => "true"
2424
}
2525

26-
s.required_ruby_version = ">= 2.7.0"
26+
s.required_ruby_version = ">= 3.1"
2727

2828
s.add_dependency "addressable", "~> 2.5"
2929
s.add_dependency "base64", "~> 0.2"

0 commit comments

Comments
 (0)