Skip to content

Commit

Permalink
Merge pull request #4 from mjankowski/version-ruby
Browse files Browse the repository at this point in the history
Bump ruby version minimum to 2.7
  • Loading branch information
searls authored Nov 6, 2024
2 parents 954f20a + 0528c4e commit 0c37b17
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@ on:

jobs:
test:

strategy:
matrix:
os: [ubuntu-latest]
ruby-version: [2.6, 2.7, '3.0', 3.1, 3.2]
ruby-version:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"

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

Expand Down
2 changes: 1 addition & 1 deletion .standard.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# For available configuration options, see:
# https://github.com/standardrb/standard
ruby_version: 2.6
ruby_version: 2.7
7 changes: 5 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ GEM
method_source (1.0.0)
minitest (5.18.0)
parallel (1.22.1)
parser (3.2.2.0)
parser (3.3.6.0)
ast (~> 2.4.1)
racc
racc (1.8.1)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.7.0)
Expand Down Expand Up @@ -45,6 +47,7 @@ GEM

PLATFORMS
arm64-darwin-22
arm64-darwin-24
x86_64-linux

DEPENDENCIES
Expand All @@ -55,4 +58,4 @@ DEPENDENCIES
standard

BUNDLED WITH
2.4.10
2.4.22
2 changes: 1 addition & 1 deletion lint_roller.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
spec.summary = "A plugin specification for linter and formatter rulesets"
spec.homepage = "https://github.com/standardrb/lint_roller"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.6.0"
spec.required_ruby_version = ">= 2.7.0"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
Expand Down

0 comments on commit 0c37b17

Please sign in to comment.