File tree Expand file tree Collapse file tree 4 files changed +9
-10
lines changed Expand file tree Collapse file tree 4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -28,15 +28,14 @@ jobs:
2828 fail-fast : false
2929 matrix :
3030 ruby-version :
31- - ' 3.1'
3231 - ' 3.2'
3332 - ' 3.3'
3433 - ' 3.4'
3534 experimental : [false]
3635 include :
3736 - ruby-version : ' ruby-head'
3837 experimental : true
39- - ruby-version : ' jruby-9.4 '
38+ - ruby-version : ' jruby-10 '
4039 experimental : true
4140 steps :
4241 - uses : actions/checkout@v4
@@ -59,15 +58,14 @@ jobs:
5958 fail-fast : false
6059 matrix :
6160 ruby-version :
62- - ' 3.1'
6361 - ' 3.2'
6462 - ' 3.3'
6563 - ' 3.4'
6664 experimental : [false]
6765 include :
6866 - ruby-version : ' ruby-head'
6967 experimental : true
70- - ruby-version : ' jruby-9.4 '
68+ - ruby-version : ' jruby-10 '
7169 experimental : true
7270 steps :
7371 - uses : actions/checkout@v4
@@ -89,15 +87,14 @@ jobs:
8987 fail-fast : false
9088 matrix :
9189 ruby-version :
92- - ' 3.1'
9390 - ' 3.2'
9491 - ' 3.3'
9592 - ' 3.4'
9693 experimental : [false]
9794 include :
9895 - ruby-version : ' ruby-head'
9996 experimental : true
100- - ruby-version : ' jruby-9.4 '
97+ - ruby-version : ' jruby-10 '
10198 experimental : true
10299 steps :
103100 - uses : actions/checkout@v4
@@ -119,15 +116,14 @@ jobs:
119116 fail-fast : false
120117 matrix :
121118 ruby-version :
122- - ' 3.1'
123119 - ' 3.2'
124120 - ' 3.3'
125121 - ' 3.4'
126122 experimental : [false]
127123 include :
128124 - ruby-version : ' ruby-head'
129125 experimental : true
130- - ruby-version : ' jruby-9.4 '
126+ - ruby-version : ' jruby-10 '
131127 experimental : true
132128
133129 steps :
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ AllCops:
1111 - ' tmp/**/*'
1212 - ' vendor/**/*'
1313 - ' gemfiles/*'
14- TargetRubyVersion : 3.1
14+ TargetRubyVersion : 3.2
1515
1616Metrics/BlockLength :
1717 Enabled : false
Original file line number Diff line number Diff line change 11# main [ (unreleased)] ( https://github.com/whitesmith/rubycritic/compare/v4.9.2...main )
22
3+ * [ CHANGE] Drop support for Ruby 3.1.x, including moving CI from JRuby 9.4 to JRuby 10 (by [ @faisal ] [ ] )
34* [ CHANGE] Bump minitest dependency. (by [ @faisal ] [ ] )
45
56# v4.10.0 / 2025-07-30 [ (commits)] ( https://github.com/whitesmith/rubycritic/compare/v4.9.2...v4.10.0 )
Original file line number Diff line number Diff line change @@ -7,14 +7,15 @@ require 'rubycritic/version'
77Gem ::Specification . new do |spec |
88 spec . name = 'rubycritic'
99 spec . version = RubyCritic ::VERSION
10+ spec . platform = RUBY_PLATFORM == 'java' ? Gem ::Platform ::JAVA : Gem ::Platform ::RUBY
1011 spec . authors = [ 'Guilherme Simoes' ]
1112 spec . email = [ '[email protected] ' ] 1213 spec . description = 'RubyCritic is a tool that wraps around various static analysis gems ' \
1314 'to provide a quality report of your Ruby code.'
1415 spec . summary = 'RubyCritic is a Ruby code quality reporter'
1516 spec . homepage = 'https://github.com/whitesmith/rubycritic'
1617 spec . license = 'MIT'
17- spec . required_ruby_version = '>= 3.1 .0'
18+ spec . required_ruby_version = '>= 3.2 .0'
1819
1920 spec . files = [
2021 'CHANGELOG.md' ,
@@ -45,6 +46,7 @@ Gem::Specification.new do |spec|
4546 spec . add_development_dependency 'aruba' , '~> 2.3.1' , '>= 2.3.1'
4647 spec . add_development_dependency 'bundler' , '>= 2.0.0'
4748 if RUBY_PLATFORM == 'java'
49+ spec . add_development_dependency 'jar-dependencies' , '~> 0.5.5'
4850 spec . add_development_dependency 'pry-debugger-jruby'
4951 else
5052 spec . add_development_dependency 'byebug' , '~> 12.0' , '>= 10.0'
You can’t perform that action at this time.
0 commit comments