-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
75 lines (55 loc) · 1.21 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
source 'http://rubygems.org'
ruby '3.0.2'
gem 'pg'
gem 'rack-canonical-host'
gem 'rails', '~> 6.1'
gem 'sprockets', '~> 3.7.2' # compatibility with bootstrap-sass
gem 'devise'
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection'
gem 'rolify'
gem 'cancancan'
gem 'simple_form'
gem 'show_for'
gem 'will_paginate'
gem 'select2-rails'
gem 'sass-rails'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'bootstrap-sass'
gem 'bootstrap-datepicker-rails'
gem 'fontello_rails_converter', github: 'Sinetheta/fontello_rails_converter', branch: :master
gem 'uglifier'
gem 'datejs-rails'
gem 'redcarpet'
gem 'inline_svg'
gem 'dotenv-rails'
gem 'slack-notifier'
gem 'rack-mini-profiler'
gem 'sentry-ruby'
gem 'sentry-rails'
gem 'stackprof'
gem 'unicorn-rails'
gem 'whenever'
group :development do
gem 'letter_opener'
end
group :development, :test do
gem 'pry-rails'
gem 'ffaker'
end
group :test do
gem 'capybara'
gem 'shoulda-matchers'
gem 'rspec-rails'
gem 'rails-controller-testing'
gem 'rspec-activemodel-mocks'
gem 'factory_bot_rails', require: false
gem 'simplecov', require: false
gem 'simplecov-rcov', require: false
gem 'ejs'
gem 'webmock'
end
group :production do
gem 'rails_12factor'
end