From ad778c27173164336bf5c8811a6b32db1ccf94e1 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Wed, 20 Aug 2025 14:28:03 -0700 Subject: [PATCH] Fix deprecated platforms --- benchmarks/erubi-rails/Gemfile | 4 ++-- benchmarks/railsbench/Gemfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/benchmarks/erubi-rails/Gemfile b/benchmarks/erubi-rails/Gemfile index 43dde742..ecfb3f71 100644 --- a/benchmarks/erubi-rails/Gemfile +++ b/benchmarks/erubi-rails/Gemfile @@ -44,7 +44,7 @@ gem 'mutex_m' group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console - gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] + gem 'byebug', platforms: [:mri, :windows] end group :development do @@ -77,7 +77,7 @@ if RUBY_VERSION >= "3.1" end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem -gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] +gem 'tzinfo-data', platforms: [:windows, :jruby] gem 'base64' gem 'bigdecimal' diff --git a/benchmarks/railsbench/Gemfile b/benchmarks/railsbench/Gemfile index 5ca45db8..8747e755 100644 --- a/benchmarks/railsbench/Gemfile +++ b/benchmarks/railsbench/Gemfile @@ -60,7 +60,7 @@ if RUBY_VERSION >= "3.1" end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem -gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] +gem 'tzinfo-data', platforms: [:windows, :jruby] gem "base64" gem "bigdecimal"