From 7fb233da950fde4483d9de00668b146cfa391024 Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Wed, 10 Jul 2024 18:05:50 +0900 Subject: [PATCH] [CI] Use bigdecimal 2 on Ruby 2 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index dc7abd2..d87ae22 100644 --- a/Gemfile +++ b/Gemfile @@ -16,7 +16,7 @@ end gem 'nokogiri', RUBY_VERSION < '2.1' ? '~> 1.6.0' : '>= 1.7' gem 'loofah', RUBY_VERSION < '2.5' ? '< 2.21.0' : '>= 0' gem 'selenium-webdriver' -gem 'bigdecimal' +gem 'bigdecimal', RUBY_VERSION < '3' ? '< 3' : '>= 0' rails_version = ENV['RAILS_VERSION'] || '∞'