Skip to content

Commit 0c37b17

Browse files
authored
Merge pull request standardrb#4 from mjankowski/version-ruby
Bump ruby version minimum to 2.7
2 parents 954f20a + 0528c4e commit 0c37b17

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

.github/workflows/test.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@ on:
1212

1313
jobs:
1414
test:
15-
1615
strategy:
1716
matrix:
1817
os: [ubuntu-latest]
19-
ruby-version: [2.6, 2.7, '3.0', 3.1, 3.2]
18+
ruby-version:
19+
- "2.7"
20+
- "3.0"
21+
- "3.1"
22+
- "3.2"
23+
- "3.3"
2024

2125
runs-on: ${{ matrix.os }}
2226

.standard.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# For available configuration options, see:
22
# https://github.com/standardrb/standard
3-
ruby_version: 2.6
3+
ruby_version: 2.7

Gemfile.lock

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ GEM
1515
method_source (1.0.0)
1616
minitest (5.18.0)
1717
parallel (1.22.1)
18-
parser (3.2.2.0)
18+
parser (3.3.6.0)
1919
ast (~> 2.4.1)
20+
racc
21+
racc (1.8.1)
2022
rainbow (3.1.1)
2123
rake (13.0.6)
2224
regexp_parser (2.7.0)
@@ -45,6 +47,7 @@ GEM
4547

4648
PLATFORMS
4749
arm64-darwin-22
50+
arm64-darwin-24
4851
x86_64-linux
4952

5053
DEPENDENCIES
@@ -55,4 +58,4 @@ DEPENDENCIES
5558
standard
5659

5760
BUNDLED WITH
58-
2.4.10
61+
2.4.22

lint_roller.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
99
spec.summary = "A plugin specification for linter and formatter rulesets"
1010
spec.homepage = "https://github.com/standardrb/lint_roller"
1111
spec.license = "MIT"
12-
spec.required_ruby_version = ">= 2.6.0"
12+
spec.required_ruby_version = ">= 2.7.0"
1313

1414
spec.metadata["homepage_uri"] = spec.homepage
1515
spec.metadata["source_code_uri"] = spec.homepage

0 commit comments

Comments
 (0)