Skip to content

Commit

Permalink
Update Support Ruby Version.
Browse files Browse the repository at this point in the history
Require Ruby v3.0 or higher.
  • Loading branch information
mkmn committed May 29, 2024
1 parent da88983 commit c054aad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ jobs:
fail-fast: false
matrix:
ruby-version:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'
steps:
- name: Checkout
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
inherit_from: '.rubocop_todo.yml'

AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0

Style/AsciiComments:
Enabled: false
Expand Down
2 changes: 1 addition & 1 deletion kirico.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 2.7'
spec.required_ruby_version = '>= 3.0'

spec.add_dependency 'activemodel', '>= 5.2'
spec.add_dependency 'activesupport', '>= 5.2'
Expand Down

0 comments on commit c054aad

Please sign in to comment.