forked from o19s/quepid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·75 lines (64 loc) · 1.83 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.7.4'
gem 'activerecord-import', '>= 1.0.7'
gem 'acts_as_list', '>= 1.0.1'
gem 'angular-rails-templates', '>= 1.0.0.beta'
gem 'bcrypt', '~> 3.1.7'
gem 'sassc-rails', '~> 2.1'
gem 'turbolinks', '~> 5'
gem 'colorize', require: false
gem 'cookies_eu'
gem 'devise', '>= 4.6.2'
gem 'devise_invitable', '~> 2.0'
gem 'gabba'
gem 'intercom-rails'
gem 'jbuilder', '~> 2.7'
gem 'redis', '~> 4.0'
gem 'jquery-rails'
gem 'jquery-ui-rails' # Can we narrow the widgets to load faster?
gem 'mysql2'
gem 'postmark-rails'
gem 'puma', '~> 5.0'
gem 'puma_worker_killer'
gem 'pundit'
gem 'rails', '= 6.1.4.1' # starting Rails 6 the webpack is included by default.
gem 'responders'
gem 'sidekiq'
gem 'terser'
gem 'bootsnap', '>= 1.4.4', require: false
gem 'listen', '~> 3.3'
gem 'd3-rails', '~> 3.5.5' # we have a very old version of D3. This provides D3 assets.
gem 'cal-heatmap-rails', '~> 3.6' # provides assets for cal heatmap, that requires old d3
gem 'font-awesome-sass'
gem 'webpacker', '= 5.4.0'
gem 'rack-cors', '~> 1.1'
gem 'foreman'
gem 'racc', '~> 1.4.0'
gem 'ancestry'
group :development, :test do
gem 'annotate'
gem 'bullet'
gem 'byebug'
gem 'memory_profiler'
gem 'rack-mini-profiler', '>= 2.3.3'
end
group :development do
gem 'derailed_benchmarks'
gem 'letter_opener'
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'rails-erd', '~> 1.6'
end
group :test do
gem 'minitest-reporters', '>= 0.5.0'
gem 'mocha', '~> 1.11'
gem 'simplecov', require: false
gem 'webmock'
gem 'rails-controller-testing' # bring back compatibility with rails 4 assigns in controller tests.
end
gem 'omniauth', '~> 2.0'
gem 'omniauth-keycloak', '~> 1.3'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'omniauth-google-oauth2', '~> 1.0'
gem 'rails-healthcheck', '~> 1.4'