Skip to content

Commit

Permalink
add Ruby 3.3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
taichi-ishitani committed Dec 26, 2023
1 parent ffff576 commit e1ba8b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
ruby: ['3.2', '3.1', '3.0']
ruby: ['3.3', '3.2', '3.1', '3.0']
frozen_string_literal: ['yes', 'no']

env:
Expand Down
2 changes: 1 addition & 1 deletion rggen-core.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(/^exe\//) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 3.0'
spec.required_ruby_version = Gem::Requirement.new('>= 3.0.0')

spec.add_runtime_dependency 'docile', '>= 1.1.5', '!= 1.3.3'
spec.add_runtime_dependency 'erubi', '>= 1.7'
Expand Down

0 comments on commit e1ba8b3

Please sign in to comment.