Skip to content

Commit

Permalink
Support Ruby 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ysakasin committed Dec 27, 2023
1 parent 5f2d9ac commit 0b3bc02
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2"]
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -20,4 +20,4 @@ jobs:
uses: codecov/codecov-action@v3
with:
file: coverage/coverage.xml
if: matrix.ruby == '3.2'
if: matrix.ruby == '3.3'
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ source "https://rubygems.org"
gemspec

group :development, :test do
gem "racc", "~> 1.6.2"
gem "rake", "~> 13.0.3"
gem "rubocop", "~> 1.39.0", require: false
gem "simplecov", "~>0.21.2", require: false
Expand Down
1 change: 1 addition & 0 deletions bcdice.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_runtime_dependency "i18n", "~> 1.8.5"
spec.add_runtime_dependency "racc", "~> 1.7.3"
end

0 comments on commit 0b3bc02

Please sign in to comment.