Skip to content

Commit

Permalink
Merge pull request #11 from katafrakt/ruby-3.3
Browse files Browse the repository at this point in the history
Add Ruby 3.3 support
  • Loading branch information
zyc9012 committed Jan 24, 2024
2 parents 767e292 + 2813f1b commit 204d9aa
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 @@ -55,7 +55,7 @@ jobs:
needs: ['build', 'memory-check']
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2']
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3']
os: ['ubuntu', 'macos', 'windows']
runs-on: ${{ matrix.os }}-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion rakelib/compile.rake
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ native_gemspec = eval(File.read 'nokolexbor.gemspec').tap do |spec|
spec.metadata.delete('msys2_mingw_dependencies')
end

ENV['RUBY_CC_VERSION'] = %w{2.6.0 2.7.0 3.0.0 3.1.0 3.2.0}.join(':')
ENV['RUBY_CC_VERSION'] = %w{2.6.0 2.7.0 3.0.0 3.1.0 3.2.0 3.3.0}.join(':')
cross_platforms = %w[x86-mingw32 x64-mingw-ucrt x64-mingw32 x86-linux x86_64-linux aarch64-linux x86_64-darwin arm64-darwin]

Rake::ExtensionTask.new('nokolexbor', native_gemspec) do |ext|
Expand Down

0 comments on commit 204d9aa

Please sign in to comment.