-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
67 lines (54 loc) · 1.47 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
66
67
source "https://rubygems.org"
gem "rails", "~> 7.1.3"
# We don't use the mail gem
gem "net-smtp", require: false
gem "net-imap", require: false
gem "net-pop", require: false
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
# High performance web server
gem "puma"
# Database
gem "pg"
gem "redis"
# Authentication
gem "doorkeeper", "~> 5.6"
gem "doorkeeper-jwt"
gem "jwt"
gem "nkf" # required for omniauth-oauth2 in Ruby 3.4
gem "omniauth", "~> 1.9"
gem "omniauth-ldap2"
gem "omniauth-oauth2"
gem "omniauth-saml"
# Model support
gem "addressable"
gem "bcrypt"
gem "email_validator"
# Logging
gem "lograge"
gem "logstash-event"
gem "mono_logger"
# gem "sentry-ruby"
# gem "opentelemetry-sdk"
# gem "opentelemetry-exporter-otlp"
# gem "opentelemetry-instrumentation-all"
# Fast JSON parsing
gem "yajl-ruby"
gem "multi_json"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri mingw x64_mingw ]
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
gem "pry-rails"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]