-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGemfile
More file actions
44 lines (39 loc) · 1.07 KB
/
Gemfile
File metadata and controls
44 lines (39 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rake'
group :development, :test do
if RUBY_VERSION < '3.1.0'
gem 'ffi', '<= 1.17'
else
gem 'ffi'
end
gem 'benchmark-ips', '>= 2.7.2'
gem 'bson'
gem 'byebug', '>= 8.0.0'
gem 'e2mmap'
gem 'get_process_mem'
gem 'irb', '>= 1.0.0'
gem 'logging'
gem 'lumberjack'
gem 'memory_profiler'
gem 'minitest', '< 5.28.0'
gem 'minitest-debugger', require: false
gem 'minitest-focus', '>= 1.1.2'
gem 'minitest-hooks', '>= 1.5.0'
gem 'minitest-reporters', '< 1.8.1'
gem 'mocha'
gem 'rack-cache'
gem 'rack-test'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rake', require: false
gem 'code-scanning-rubocop', '~> 0.6.1'
gem 'simplecov', require: false, group: :test
gem 'simplecov-cobertura', require: false, group: :test
gem 'simplecov-console', require: false, group: :test
gem 'webmock' if RUBY_VERSION >= '2.0.0'
gem 'base64' if RUBY_VERSION >= '3.4.0'
gem 'opentelemetry-propagator-b3'
gem 'opentelemetry-test-helpers'
gemspec
end