Skip to content

Commit ad778c2

Browse files
committed
Fix deprecated platforms
1 parent e6b5ca8 commit ad778c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

benchmarks/erubi-rails/Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ gem 'mutex_m'
4444

4545
group :development, :test do
4646
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
47-
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
47+
gem 'byebug', platforms: [:mri, :windows]
4848
end
4949

5050
group :development do
@@ -77,7 +77,7 @@ if RUBY_VERSION >= "3.1"
7777
end
7878

7979
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
80-
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
80+
gem 'tzinfo-data', platforms: [:windows, :jruby]
8181

8282
gem 'base64'
8383
gem 'bigdecimal'

benchmarks/railsbench/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ if RUBY_VERSION >= "3.1"
6060
end
6161

6262
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
63-
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
63+
gem 'tzinfo-data', platforms: [:windows, :jruby]
6464

6565
gem "base64"
6666
gem "bigdecimal"

0 commit comments

Comments
 (0)