-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGemfile
134 lines (98 loc) · 2.77 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.0.5'
# Use Puma as the app server
gem 'puma', '~> 6.0'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.11'
gem 'jsbundling-rails'
gem 'cssbundling-rails'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Prometheus client
gem 'prometheus-client', '~> 4.0.0'
gem 'icalendar'
gem 'rack-cors'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
# OmniAuth Auth0 strategy and CSRF protection
gem 'omniauth-auth0', '~> 3.0'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails'
gem 'factory_bot_rails'
gem 'committee'
gem 'committee-rails'
gem 'simplecov'
gem 'rubocop', '~> 1.56.0'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'annotate', require: false
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '~> 3.2'
gem 'pry-rails'
gem 'bullet'
gem 'rbs'
gem 'steep', require: false
gem 'rbs_rails', require: false
gem 'pre-commit', require: false
gem 'execjs', require: false
gem 'foreman'
end
group :test do
gem 'rexml', '~> 3.2', '>= 3.2.4'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "mysql2", "~> 0.5.6"
gem "stackprof"
gem "sentry-ruby"
gem "sentry-rails"
gem "sentry-opentelemetry"
gem "opentelemetry-sdk"
gem "opentelemetry-instrumentation-all"
gem "redis-rails"
gem "shrine", "~> 3.3"
gem "aws-sdk-s3", "~> 1.14"
gem 'seed-fu'
gem 'rails_autolink'
gem "rack-timeout"
gem "pundit"
gem 'redcarpet'
# processing images
gem "uppy-s3_multipart", "~> 1.0"
gem "image_processing", "~> 1.12.2"
gem 'awesome_nested_set'
gem 'aws-sdk-rails'
gem 'activerecord-nulldb-adapter'
gem 'slack-incoming-webhooks'
gem 'psych', '< 6'
gem "aws-sdk-medialive"
gem "aws-sdk-mediapackage"
gem "aws-sdk-mediapackagev2"
gem "aws-sdk-cloudfront"
gem "aws-sdk-ssm"
gem 'active_hash'
gem "turbo-rails", "2.0.5"
gem 'slack-ruby-client'
gem 'nokogiri', '1.16.5'
gem 'faraday-retry'
# QRcode rendering
gem "rqrcode", "~> 2.0"
gem 'ulid'
gem 'acts_as_list'
# PDF tool
gem 'ferrum'
gem 'printnode'