Skip to content

Commit 8ef6523

Browse files
author
shuuuuuny
committed
Drop support ruby 2.7
1 parent 1017265 commit 8ef6523

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/main.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Ruby
1919
uses: ruby/setup-ruby@v1
2020
with:
21-
ruby-version: "3.1"
21+
ruby-version: "3.3"
2222
- name: Install bundler
2323
run: gem install bundler
2424
- name: Setup
@@ -44,9 +44,10 @@ jobs:
4444
strategy:
4545
matrix:
4646
ruby:
47-
- "2.7"
4847
- "3.0"
4948
- "3.1"
49+
- "3.2"
50+
- "3.3"
5051
steps:
5152
- uses: actions/checkout@v2
5253
- name: Set up Ruby

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ require:
44
- rubocop-rubycw
55

66
AllCops:
7-
TargetRubyVersion: 2.7
7+
TargetRubyVersion: 3.0
88
NewCops: enable
99
DisplayCopNames: true
1010
DisplayStyleGuide: true

activeadmin-menu_tree.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212
spec.description = "This is a wrapper library for managing ActiveAdmin's menu structure in a simple yaml format, and automatically setting the priority and parent."
1313
spec.homepage = "https://github.com/shuuuuun/activeadmin-menu_tree"
1414
spec.license = "MIT"
15-
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
15+
spec.required_ruby_version = Gem::Requirement.new(">= 3.0")
1616

1717
spec.metadata["homepage_uri"] = spec.homepage
1818
spec.metadata["source_code_uri"] = "https://github.com/shuuuuun/activeadmin-menu_tree"

0 commit comments

Comments
 (0)