From 1a94b126dde2774a6f56dcf4c9eaa5c5525b3dad Mon Sep 17 00:00:00 2001 From: Lars Kanis Date: Sat, 27 Jul 2024 18:58:33 +0200 Subject: [PATCH] Add comment to Gemfile reg. bigdecimal --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index 6d171b4a7..a3a0ac397 100644 --- a/Gemfile +++ b/Gemfile @@ -14,5 +14,7 @@ group :development, :test do gem "ostruct", "~> 0.5" # for Rakefile.cross # "bigdecimal" is a gem on ruby-3.4+ and it's optional for ruby-pg. # Specs should succeed without it, but 4 examples are then excluded. + # With bigdecimal commented out here, corresponding tests are omitted on ruby-3.4+ but are executed on ruby < 3.4. + # That way we can check both situations in CI. # gem "bigdecimal", "~> 3.0" end