Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ jobs:
experimental: true
- ruby-version: 'jruby-9.4'
experimental: true
- ruby-version: 'jruby-10.0'
experimental: true
steps:
- uses: actions/checkout@v6
- name: Set up Ruby ${{ matrix.ruby-version }}
Expand Down Expand Up @@ -69,6 +71,8 @@ jobs:
experimental: true
- ruby-version: 'jruby-9.4'
experimental: true
- ruby-version: 'jruby-10.0'
experimental: true
steps:
- uses: actions/checkout@v6
- name: Set up Ruby ${{ matrix.ruby-version }}
Expand Down Expand Up @@ -100,6 +104,8 @@ jobs:
experimental: true
- ruby-version: 'jruby-9.4'
experimental: true
- ruby-version: 'jruby-10.0'
experimental: true
steps:
- uses: actions/checkout@v6
- name: Set up Ruby ${{ matrix.ruby-version }}
Expand Down Expand Up @@ -131,6 +137,8 @@ jobs:
experimental: true
- ruby-version: 'jruby-9.4'
experimental: true
- ruby-version: 'jruby-10.0'
experimental: true
steps:
- uses: actions/checkout@v6
- name: Set up Ruby ${{ matrix.ruby-version }}
Expand Down
1 change: 1 addition & 0 deletions .jrubyrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
debug.fullTrace=true
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* [CHORE] ...
* [FEATURE] ...

* [CHANGE] Add CI support for JRuby 10.0 (by [@faisal][])
* [CHANGE] Bump cucumber dependency (by [@faisal][])
* [BUGFIX] Fixed regression in compatibility with Flog 4.9.0 (by [@faisal][])
* [CHANGE] Bump mocha dependency (by [@faisal][])
Expand Down
2 changes: 2 additions & 0 deletions rubycritic.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ require 'rubycritic/version'
Gem::Specification.new do |spec|
spec.name = 'rubycritic'
spec.version = RubyCritic::VERSION
spec.platform = RUBY_PLATFORM == 'java' ? Gem::Platform::JAVA : Gem::Platform::RUBY
spec.authors = ['Guilherme Simoes']
spec.email = ['guilherme.rdems@gmail.com']
spec.description = 'RubyCritic is a tool that wraps around various static analysis gems ' \
Expand Down Expand Up @@ -46,6 +47,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'aruba', '~> 2.3.1', '>= 2.3.1'
spec.add_development_dependency 'bundler', '>= 2.0.0'
if RUBY_PLATFORM == 'java'
spec.add_development_dependency 'jar-dependencies', '~> 0.5.5'
spec.add_development_dependency 'pry-debugger-jruby'
else
spec.add_development_dependency 'byebug', '~> 12.0', '>= 10.0'
Expand Down
Loading