forked from slovensko-digital/govbox-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
79 lines (63 loc) · 1.22 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
source 'https://rubygems.org'
ruby '3.3.0'
gem 'rails', '~> 7.1'
gem 'rails-i18n'
gem 'pg', '~> 1.5'
gem 'with_advisory_lock'
gem 'puma', '~> 6.4'
gem 'turbo-rails'
# Styles
gem 'sprockets-rails'
gem 'importmap-rails'
gem 'tailwindcss-rails'
gem 'view_component'
# Schedulers
gem 'clockwork'
# Workers
gem 'good_job'
# Auth
gem 'omniauth-google-oauth2'
gem 'omniauth-saml', '~> 2.2.1'
gem 'omniauth-rails_csrf_protection'
gem 'pundit'
# Utilities
gem 'rest-client'
gem 'rack-attack'
gem 'jbuilder'
gem 'rubyzip', require: 'zip'
gem 'jwt'
gem 'stimulus-rails'
gem 'jsbundling-rails'
gem 'pdf-reader'
# Monitoring
gem 'rollbar'
# search
gem 'pg_search'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.4', require: false
group :development, :test do
gem "brakeman"
gem 'dotenv-rails'
gem 'pry-rails'
gem 'pry-byebug'
gem 'foreman'
end
group :development do
gem 'annotate'
gem 'listen'
gem 'web-console'
gem 'solargraph'
gem 'htmlbeautifier'
gem 'erb_lint'
gem 'ruby-lsp-rails'
gem 'rdbg'
gem 'rubocop'
gem 'rubocop-rails'
end
group :test do
gem 'selenium-webdriver'
gem 'capybara'
gem 'capybara-screenshot'
gem 'webmock'
gem 'simplecov', require: false
end