Skip to content

Commit 30befeb

Browse files
authored
Bump required ruby version to 4.0 (#147)
* Bump required ruby version to 4.0 * Add ruby head
1 parent 677a32b commit 30befeb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/rspec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
ruby: ["3.1", "3.2", "3.3", "3.4", "4.0"]
24+
ruby: ["4.0", "head"]
2525

2626
steps:
2727
- name: Harden the runner (Audit all outbound calls)

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins:
77
- rubocop-rspec
88

99
AllCops:
10-
TargetRubyVersion: 3.1
10+
TargetRubyVersion: 4.0
1111
NewCops: enable
1212

1313
# We use standard as a linter and formatter instead Rubocop.

.standard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby_version: 3.1
1+
ruby_version: 4.0

errbit_plugin.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212
spec.description = "Base to create an errbit plugin"
1313
spec.homepage = "https://github.com/errbit/errbit_plugin"
1414
spec.license = "MIT"
15-
spec.required_ruby_version = ">= 3.1.0"
15+
spec.required_ruby_version = ">= 4.0.0"
1616

1717
spec.metadata["homepage_uri"] = spec.homepage
1818
spec.metadata["source_code_uri"] = spec.homepage

0 commit comments

Comments
 (0)