-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathGemfile
More file actions
32 lines (25 loc) · 782 Bytes
/
Gemfile
File metadata and controls
32 lines (25 loc) · 782 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
# frozen_string_literal: true
source 'https://rubygems.org'
# Primary Temporal dependency
gem 'temporalio'
# Some samples require certain dependencies, so they are in groups below alphabetically by group
group :coinbase_ruby do
# TODO(cretz): Move this to coinbase/temporal-ruby and off this fork/branch
# when https://github.com/coinbase/temporal-ruby/pull/335 merged, and then update the coinbase_ruby README
gem 'temporal-ruby', github: 'cretz/coinbase-temporal-ruby', branch: 'disable-proto-load-option'
end
group :development do
gem 'minitest'
gem 'rake'
gem 'rubocop'
end
group :encryption do
gem 'puma'
gem 'rackup'
gem 'sinatra'
end
group :opentelemetry do
gem 'opentelemetry-api'
gem 'opentelemetry-exporter-otlp'
gem 'opentelemetry-sdk'
end