From 6eadd6e0af3178e4e74cea94cfea720df8124ff6 Mon Sep 17 00:00:00 2001 From: Masato Ikeda Date: Thu, 1 Jan 2026 17:00:41 +0900 Subject: [PATCH] Remove bigdecimal gem from Gemfile The active versions of the activesupport gem have added the bigdecimal gem to their dependencies. --- Gemfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Gemfile b/Gemfile index 0194885..8a776b6 100644 --- a/Gemfile +++ b/Gemfile @@ -3,11 +3,6 @@ gemspec gem 'rake' -if RUBY_VERSION >= '3.4' - # the activesupport gem depends on the bigdecimal gem, which has been extracted as a bundled gem since Ruby 3.4. - gem 'bigdecimal' -end - if RUBY_VERSION >= '4.0' # the mongo gem depends on the logger gem, which has been extracted as a bundled gem since Ruby 4.0. gem 'logger'