-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
65 lines (53 loc) · 1.42 KB
/
Gemfile
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.1"
gem "bootsnap", require: false
gem "dry-struct", "~> 1.6"
gem "faraday", "~> 2.9"
gem "importmap-rails"
gem "jbuilder"
gem "opentelemetry-exporter-otlp", "~> 0.26.3"
gem "opentelemetry-instrumentation-all",
github: "joyfulprogramming/opentelemetry-ruby-contrib",
branch: "main",
glob: "instrumentation/*/*.gemspec"
gem "opentelemetry-sdk", "~> 1.4"
gem "pg", "~> 1.1"
gem "propshaft"
gem "puma", "~> 6"
gem "rails", "~> 7"
gem "rails_semantic_logger", "~> 4.14"
gem "redis", "~> 4.0"
gem "semantic_logger", "~> 4.15"
gem "sentry-rails", "~> 5.17"
gem "sentry-ruby", "~> 5.17"
gem "sidekiq", "~> 7.2"
gem "stimulus-rails"
gem "turbo-rails"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
group :development, :test do
gem "debug", platforms: %i[mri mingw x64_mingw]
end
group :development do
gem "spring", "~> 4.2"
gem "spring-commands-rspec", "~> 1.0"
gem "standardrb"
gem "web-console"
end
group :test do
gem "awesome_print", "~> 1.9"
gem "capybara"
gem "rspec", "~> 3.13"
gem "rspec-rails", "~> 6.1"
gem "selenium-webdriver"
gem "super_diff", "~> 0.11.0"
gem "vcr", "~> 6.2"
gem "webdrivers"
gem "webmock", "~> 3.23"
end
gem "pry", "~> 0.14.2"
gem "foreman", "~> 0.88.1"
gem "devise", "~> 4.9"
gem "net_tcp_client", "~> 2.2"
gem "appsignal", "~> 3.7"