Skip to content

Commit

Permalink
Re-enable JRuby in the CI matrix (issue #2).
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed Nov 24, 2022
1 parent e6e0c6a commit 9c61588
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
ruby:
- '3.0'
- '3.1'
# - jruby
- jruby
- truffleruby
name: Ruby ${{ matrix.ruby }}
steps:
Expand Down
8 changes: 5 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ source 'https://rubygems.org'

gemspec

gem 'jruby-openssl', '~> 0.7', platforms: :jruby
platform :jruby do
gem 'jruby-openssl', '~> 0.7'
end

# gem 'command_kit', '~> 0.4', github: 'postmodern/command_kit.rb',
# branch: '0.4.0'
Expand All @@ -27,6 +29,6 @@ group :development do
gem 'yard-spellcheck', require: false

gem 'dead_end', require: false
gem 'sord', require: false
gem 'stackprof', require: false
gem 'sord', require: false, platform: :mri
gem 'stackprof', require: false, platform: :mri
end

0 comments on commit 9c61588

Please sign in to comment.