This repository has been archived by the owner on Oct 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Gemfile
66 lines (57 loc) · 1.41 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
source 'https://rubygems.org'
gem 'rails', '~> 6.1', '>= 6.1.2.1'
gem 'pg', '1.2.3'
gem 'puma'
gem 'jbuilder', '~> 2.7'
gem 'redcarpet', '3.5.1'
gem 'coderay', '1.1.3'
gem 'coderay_bash', '1.0.7'
gem 'kaminari', '~> 1.2'
gem 'mini_magick'
gem 'rack-attack'
gem 'rack-cors'
gem 'omniauth-google-oauth2'
gem "omniauth-rails_csrf_protection"
gem 'sidekiq', '6.4.0'
gem 'sidekiq-scheduler', '3.0.1'
gem 'sidekiq-status', '1.1.4'
gem 'foreman', '~> 0.87.2'
gem 'bcrypt', '3.1.16'
gem 'rails_admin'
gem 'recaptcha'
gem "valid_email2"
gem "active_link_to"
gem "image_processing"
gem "ancestry"
gem 'sass-rails', '>= 6'
gem 'webpacker', '~> 5.0'
gem 'turbolinks', '~> 5'
# Auth
# gem 'devise', '4.7.3'
gem 'devise', github: 'heartcombo/devise', branch: 'ca-omniauth-2'
gem 'pundit', '2.1.0'
group :development, :test do
gem 'byebug', platform: :mri
gem "minitest"
gem "minitest-reporters"
gem 'dotenv-rails', '~> 2.7', '>= 2.7.6'
end
group :development do
gem 'web-console'
gem 'listen', '3.4.1'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.1'
gem 'letter_opener_web', '1.4.0'
gem 'faker'
gem 'rack-mini-profiler'
gem 'bullet'
# For memory profiling
gem 'memory_profiler'
# For call-stack profiling flamegraphs
gem 'stackprof'
end
group :test do
gem 'mocha'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]