From 8c32fb889fe9d76f44543678e7e6674253f34af9 Mon Sep 17 00:00:00 2001 From: Sarah Chen Date: Mon, 9 Dec 2024 13:16:31 -0500 Subject: [PATCH] alphabetize --- ruby-3.4.gemfile | 70 ++++++++++++++++++++++-------------------------- 1 file changed, 32 insertions(+), 38 deletions(-) diff --git a/ruby-3.4.gemfile b/ruby-3.4.gemfile index 10563ad479f..31078cc443c 100644 --- a/ruby-3.4.gemfile +++ b/ruby-3.4.gemfile @@ -2,16 +2,30 @@ source 'https://rubygems.org' gemspec +gem 'base64' gem 'benchmark-ips', '~> 2.8' gem 'benchmark-memory', '< 0.2' # V0.2 only works with 2.5+ - +gem 'bigdecimal' gem 'climate_control', '~> 0.2.0' - gem 'concurrent-ruby' + +# Optional extensions +# TODO: Move this to Appraisals? +# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. +# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 +gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' + gem 'extlz4', '~> 0.3', '>= 0.3.3' + +# Profiler testing dependencies +# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. +# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add +# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. +gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] + gem 'json-schema', '< 3' # V3 only works with 2.5+ gem 'memory_profiler', '~> 0.9' - +gem 'mutex_m' gem 'os', '~> 1.1' gem 'pimpmychangelog', '>= 0.1.2' gem 'pry' @@ -21,40 +35,33 @@ gem 'rake-compiler', '~> 1.1', '>= 1.1.1' # To compile native extensions gem 'rspec', '~> 3.13' gem 'rspec-collection_matchers', '~> 1.1' gem 'rspec-wait', '~> 0' - gem 'rspec_junit_formatter', '>= 0.5.1' +# 1.50 is the last version to support Ruby 2.6 +gem 'rubocop', '~> 1.50.0', require: false +gem 'rubocop-packaging', '~> 0.5.2', require: false +gem 'rubocop-performance', '~> 1.9', require: false +# 2.20 is the last version to support Ruby 2.6 +gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false + # Merging branch coverage results does not work for old, unsupported rubies and JRuby # We have a fix up for review, https://github.com/simplecov-ruby/simplecov/pull/972, # but given it only affects unsupported version of Ruby, it might not get merged. gem 'simplecov', git: 'https://github.com/DataDog/simplecov', ref: '3bb6b7ee58bf4b1954ca205f50dd44d6f41c57db' gem 'simplecov-cobertura', '~> 2.1.0' # Used by codecov +# Ruby 3.4 should be supported by strscan v3.1.1. However, the latest release of strscan is v3.1.0. +# Pin strscan to the latest commit sha. +# +# TODO: Remove once v3.1.1 is released. +gem 'strscan', + git: 'https://github.com/ruby/strscan', + ref: '041b15df4ccc067deabd85fd489b2c15961d0e2f' + gem 'warning', '~> 1' # NOTE: Used in spec_helper.rb gem 'webmock', '>= 3.10.0' - -# No longer bundled by default since Ruby 3.0 gem 'webrick', '>= 1.8.2' -# 1.50 is the last version to support Ruby 2.6 -gem 'rubocop', '~> 1.50.0', require: false -gem 'rubocop-packaging', '~> 0.5.2', require: false -gem 'rubocop-performance', '~> 1.9', require: false -# 2.20 is the last version to support Ruby 2.6 -gem 'rubocop-rspec', ['~> 2.20', '< 2.21'], require: false - -# Optional extensions -# TODO: Move this to Appraisals? -# dogstatsd v5, but lower than 5.2, has possible memory leak with datadog. -# @see https://github.com/DataDog/dogstatsd-ruby/issues/182 -gem 'dogstatsd-ruby', '>= 3.3.0', '!= 5.0.0', '!= 5.0.1', '!= 5.1.0' - -# Profiler testing dependencies -# NOTE: We're excluding versions 3.7.0 and 3.7.1 for the reasons documented in #1424. -# Since most of our customers won't have BUNDLE_FORCE_RUBY_PLATFORM=true, it's not something we want to add -# to our CI, so we just shortcut and exclude specific versions that were affecting our CI. -gem 'google-protobuf', ['~> 3.0', '!= 3.7.0', '!= 3.7.1'] - group :check do gem 'rbs', '~> 3.6', require: false gem 'steep', '~> 1.7.0', require: false @@ -66,16 +73,3 @@ group :dev do gem 'ruby-lsp', require: false gem 'appraisal', '~> 2.4.0', require: false end - -# Ruby 3.4 should be supported by strscan v3.1.1. However, the latest release of strscan is v3.1.0. -# Pin strscan to the latest commit sha. -# -# TODO: Remove once v3.1.1 is released. -gem 'strscan', - git: 'https://github.com/ruby/strscan', - ref: '041b15df4ccc067deabd85fd489b2c15961d0e2f' - -# No longer bundled by default since Ruby 3.4 -gem 'base64' -gem 'bigdecimal' -gem 'mutex_m'