-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (31 loc) · 948 Bytes
/
Gemfile
File metadata and controls
34 lines (31 loc) · 948 Bytes
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
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
group :development do
gem 'activemodel'
gem 'activerecord'
gem 'async'
gem 'base64'
gem 'googleapis-common-protos-types'
gem 'grpc-tools', '~> 1.69'
gem 'irb'
gem 'minitest'
# Have to explicitly depend on openssl for macos issue in GH CI described at
# https://github.com/rails/rails/issues/55886 until 3.4.8 is released
gem 'openssl' if RUBY_PLATFORM.include?('darwin')
# We are intentionally not pinning OTel versions here so that CI tests the latest. This also means that the OTel
# contrib library also does not require specific versions, we are relying on the compatibility rigor of OTel.
gem 'opentelemetry-api'
gem 'opentelemetry-sdk'
gem 'rake'
gem 'rake-compiler'
gem 'rbi'
gem 'rbs', '~> 3.10'
gem 'rb_sys', '~> 0.9'
gem 'rdoc'
gem 'rubocop'
gem 'sorbet-runtime'
gem 'sqlite3'
gem 'steep', '~> 1.10'
gem 'yard'
end