-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
78 lines (66 loc) · 1.53 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.1'
# core
gem 'bootsnap', '>= 1.4.2', require: false
gem 'haml-rails', '~> 2.0'
gem 'rgl', '~> 0.5.7'
gem 'pg'
gem 'puma', '~> 5.0'
gem 'nilify_blanks', '~> 1.4'
gem 'rails', '~> 7.0'
gem 'oj', '~> 3.10'
gem 'pry-rails', '~> 0.3.9'
gem 'rails-patterns'
gem 'friendly_id', '~> 5.4.0'
gem 'view_component'
gem 'jwt'
gem 'http', '~> 5.0'
gem 'turbo-rails', '~> 1.0'
gem 'liquid', '~> 5.3'
# functionality
gem 'ipaddress', github: 'ipaddress-gem/ipaddress'
gem 'jb', '~> 0.8.0'
gem 'simple_form', '~> 5.0'
gem 'ancestry'
gem 'paper_trail'
gem 'kaminari'
gem 'naturally', '~> 2.2'
# markdown
gem 'redcarpet'
gem 'rouge', '~> 3.30'
# auth
gem 'devise'
gem 'omniauth', '~> 2.0'
gem 'omniauth_openid_connect', github: 'sping/omniauth_openid_connect'
gem 'omniauth-rails_csrf_protection'
gem 'pundit'
# frontend
gem 'propshaft'
gem 'jsbundling-rails', '~> 1.0'
gem 'cssbundling-rails', '~> 1.0'
# monitoring
gem 'sentry-ruby'
gem 'sentry-rails'
group :development, :test do
gem 'rubocop-rails_config'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'rspec-rails', '~> 5.1.0'
gem 'factory_bot_rails'
end
group :development do
gem 'listen'
gem 'web-console', '>= 3.3.0'
gem 'bullet'
gem 'rack-mini-profiler'
# For memory profiling
gem 'memory_profiler'
# For call-stack profiling flamegraphs
gem 'flamegraph'
gem 'stackprof'
end
group :production do
gem 'redis'
gem 'hiredis', '~> 0.6.3'
end