Skip to content

Commit

Permalink
update development dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
anmarchenko committed May 7, 2024
1 parent 59a92c8 commit a7ab267
Show file tree
Hide file tree
Showing 102 changed files with 371 additions and 348 deletions.
9 changes: 9 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ def self.with_cucumber_gem(versions:)
if (4..6).cover?(v)
gem "activesupport", "< 7.1"
end
if v == 9 && RUBY_ENGINE.include?("jruby")
gem "bigdecimal", "< 3.1.8"
end
end
end
end
Expand Down Expand Up @@ -102,6 +105,9 @@ def self.with_minitest_shoulda_context_gem(minitest_versions: 5, shoulda_context
gem "minitest", "~> #{minitest_v}"
gem "shoulda-context", "~> #{shoulda_context_v}"
gem "shoulda-matchers", "~> #{shoulda_matchers_v}"
if RUBY_ENGINE.include?("jruby")
gem "bigdecimal", "< 3.1.8"
end
end
end
end
Expand All @@ -112,6 +118,9 @@ def self.with_active_support_gem(versions: 7)
Array(versions).each do |activesupport_v|
appraise "activesupport-#{activesupport_v}" do
gem "activesupport", "~> #{activesupport_v}"
if RUBY_ENGINE.include?("jruby")
gem "bigdecimal", "< 3.1.8"
end
end
end
end
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.2'
services:
# MRI
datadog-ci-2.7:
Expand Down
1 change: 1 addition & 0 deletions gemfiles/jruby_9.4_activesupport_4.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ gem "pimpmychangelog", ">= 0.1.2"
gem "simplecov"
gem "simplecov-cobertura", "~> 2.1.0"
gem "activesupport", "~> 4"
gem "bigdecimal", "< 3.1.8"

group :check do

Expand Down
8 changes: 5 additions & 3 deletions gemfiles/jruby_9.4_activesupport_4.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ GEM
rake
thor (>= 0.14.0)
ast (2.4.2)
bigdecimal (3.1.7-java)
climate_control (1.2.0)
coderay (1.1.3)
concurrent-ruby (1.2.3)
Expand All @@ -43,7 +44,7 @@ GEM
msgpack (1.7.2-java)
os (1.1.4)
parallel (1.24.0)
parser (3.3.0.5)
parser (3.3.1.0)
ast (~> 2.4.1)
racc
pimpmychangelog (0.1.3)
Expand Down Expand Up @@ -86,8 +87,8 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-performance (1.20.2)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
Expand Down Expand Up @@ -130,6 +131,7 @@ PLATFORMS
DEPENDENCIES
activesupport (~> 4)
appraisal
bigdecimal (< 3.1.8)
climate_control
datadog-ci!
os
Expand Down
1 change: 1 addition & 0 deletions gemfiles/jruby_9.4_activesupport_5.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ gem "pimpmychangelog", ">= 0.1.2"
gem "simplecov"
gem "simplecov-cobertura", "~> 2.1.0"
gem "activesupport", "~> 5"
gem "bigdecimal", "< 3.1.8"

group :check do

Expand Down
10 changes: 6 additions & 4 deletions gemfiles/jruby_9.4_activesupport_5.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ GEM
rake
thor (>= 0.14.0)
ast (2.4.2)
bigdecimal (3.1.7-java)
climate_control (1.2.0)
coderay (1.1.3)
concurrent-ruby (1.2.3)
Expand All @@ -30,7 +31,7 @@ GEM
diff-lcs (1.5.1)
docile (1.4.0)
ffi (1.16.3-java)
i18n (1.14.4)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
json (2.7.2-java)
language_server-protocol (3.17.0.3)
Expand All @@ -43,7 +44,7 @@ GEM
msgpack (1.7.2-java)
os (1.1.4)
parallel (1.24.0)
parser (3.3.0.5)
parser (3.3.1.0)
ast (~> 2.4.1)
racc
pimpmychangelog (0.1.3)
Expand Down Expand Up @@ -86,8 +87,8 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-performance (1.20.2)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
Expand Down Expand Up @@ -130,6 +131,7 @@ PLATFORMS
DEPENDENCIES
activesupport (~> 5)
appraisal
bigdecimal (< 3.1.8)
climate_control
datadog-ci!
os
Expand Down
1 change: 1 addition & 0 deletions gemfiles/jruby_9.4_activesupport_6.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ gem "pimpmychangelog", ">= 0.1.2"
gem "simplecov"
gem "simplecov-cobertura", "~> 2.1.0"
gem "activesupport", "~> 6"
gem "bigdecimal", "< 3.1.8"

group :check do

Expand Down
10 changes: 6 additions & 4 deletions gemfiles/jruby_9.4_activesupport_6.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ GEM
rake
thor (>= 0.14.0)
ast (2.4.2)
bigdecimal (3.1.7-java)
climate_control (1.2.0)
coderay (1.1.3)
concurrent-ruby (1.2.3)
Expand All @@ -31,7 +32,7 @@ GEM
diff-lcs (1.5.1)
docile (1.4.0)
ffi (1.16.3-java)
i18n (1.14.4)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
json (2.7.2-java)
language_server-protocol (3.17.0.3)
Expand All @@ -44,7 +45,7 @@ GEM
msgpack (1.7.2-java)
os (1.1.4)
parallel (1.24.0)
parser (3.3.0.5)
parser (3.3.1.0)
ast (~> 2.4.1)
racc
pimpmychangelog (0.1.3)
Expand Down Expand Up @@ -87,8 +88,8 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-performance (1.20.2)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
Expand Down Expand Up @@ -131,6 +132,7 @@ PLATFORMS
DEPENDENCIES
activesupport (~> 6)
appraisal
bigdecimal (< 3.1.8)
climate_control
datadog-ci!
os
Expand Down
1 change: 1 addition & 0 deletions gemfiles/jruby_9.4_activesupport_7.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ gem "pimpmychangelog", ">= 0.1.2"
gem "simplecov"
gem "simplecov-cobertura", "~> 2.1.0"
gem "activesupport", "~> 7"
gem "bigdecimal", "< 3.1.8"

group :check do

Expand Down
9 changes: 5 additions & 4 deletions gemfiles/jruby_9.4_activesupport_7.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ GEM
docile (1.4.0)
drb (2.2.1)
ffi (1.16.3-java)
i18n (1.14.4)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
json (2.7.2-java)
language_server-protocol (3.17.0.3)
Expand All @@ -53,7 +53,7 @@ GEM
mutex_m (0.2.0)
os (1.1.4)
parallel (1.24.0)
parser (3.3.0.5)
parser (3.3.1.0)
ast (~> 2.4.1)
racc
pimpmychangelog (0.1.3)
Expand Down Expand Up @@ -96,8 +96,8 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-performance (1.20.2)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
Expand Down Expand Up @@ -139,6 +139,7 @@ PLATFORMS
DEPENDENCIES
activesupport (~> 7)
appraisal
bigdecimal (< 3.1.8)
climate_control
datadog-ci!
os
Expand Down
8 changes: 4 additions & 4 deletions gemfiles/jruby_9.4_ci_queue_0_minitest_5.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ GEM
thor (>= 0.14.0)
ast (2.4.2)
builder (3.2.4)
ci-queue (0.49.0)
ci-queue (0.52.0)
climate_control (1.2.0)
coderay (1.1.3)
datadog (2.0.0.beta2)
Expand Down Expand Up @@ -43,7 +43,7 @@ GEM
msgpack (1.7.2-java)
os (1.1.4)
parallel (1.24.0)
parser (3.3.0.5)
parser (3.3.1.0)
ast (~> 2.4.1)
racc
pimpmychangelog (0.1.3)
Expand Down Expand Up @@ -86,8 +86,8 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-performance (1.20.2)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
Expand Down
8 changes: 4 additions & 4 deletions gemfiles/jruby_9.4_ci_queue_0_rspec_3.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ GEM
rake
thor (>= 0.14.0)
ast (2.4.2)
ci-queue (0.49.0)
ci-queue (0.52.0)
climate_control (1.2.0)
coderay (1.1.3)
datadog (2.0.0.beta2)
Expand All @@ -35,7 +35,7 @@ GEM
msgpack (1.7.2-java)
os (1.1.4)
parallel (1.24.0)
parser (3.3.0.5)
parser (3.3.1.0)
ast (~> 2.4.1)
racc
pimpmychangelog (0.1.3)
Expand Down Expand Up @@ -78,8 +78,8 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-performance (1.20.2)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
Expand Down
6 changes: 3 additions & 3 deletions gemfiles/jruby_9.4_cucumber_3.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ GEM
multi_test (1.1.0)
os (1.1.4)
parallel (1.24.0)
parser (3.3.0.5)
parser (3.3.1.0)
ast (~> 2.4.1)
racc
pimpmychangelog (0.1.3)
Expand Down Expand Up @@ -98,8 +98,8 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-performance (1.20.2)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
Expand Down
8 changes: 4 additions & 4 deletions gemfiles/jruby_9.4_cucumber_4.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ GEM
diff-lcs (1.3)
docile (1.4.0)
ffi (1.16.3-java)
i18n (1.14.4)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
json (2.7.2-java)
language_server-protocol (3.17.0.3)
Expand All @@ -77,7 +77,7 @@ GEM
multi_test (0.1.2)
os (1.1.4)
parallel (1.24.0)
parser (3.3.0.5)
parser (3.3.1.0)
ast (~> 2.4.1)
racc
pimpmychangelog (0.1.3)
Expand Down Expand Up @@ -125,8 +125,8 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-performance (1.20.2)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
Expand Down
8 changes: 4 additions & 4 deletions gemfiles/jruby_9.4_cucumber_5.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ GEM
diff-lcs (1.5.1)
docile (1.4.0)
ffi (1.16.3-java)
i18n (1.14.4)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
json (2.7.2-java)
language_server-protocol (3.17.0.3)
Expand All @@ -77,7 +77,7 @@ GEM
multi_test (0.1.2)
os (1.1.4)
parallel (1.24.0)
parser (3.3.0.5)
parser (3.3.1.0)
ast (~> 2.4.1)
racc
pimpmychangelog (0.1.3)
Expand Down Expand Up @@ -125,8 +125,8 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-performance (1.20.2)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
Expand Down
8 changes: 4 additions & 4 deletions gemfiles/jruby_9.4_cucumber_6.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ GEM
diff-lcs (1.5.1)
docile (1.4.0)
ffi (1.16.3-java)
i18n (1.14.4)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
json (2.7.2-java)
language_server-protocol (3.17.0.3)
Expand All @@ -81,7 +81,7 @@ GEM
multi_test (0.1.2)
os (1.1.4)
parallel (1.24.0)
parser (3.3.0.5)
parser (3.3.1.0)
ast (~> 2.4.1)
racc
pimpmychangelog (0.1.3)
Expand Down Expand Up @@ -129,8 +129,8 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-performance (1.20.2)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
Expand Down
Loading

0 comments on commit a7ab267

Please sign in to comment.