-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
103 lines (85 loc) · 1.74 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
source 'https://rubygems.org'
ruby '2.6.3'
# server
gem 'rails', '5.2.3'
gem 'bootsnap'
gem 'puma'
gem 'config'
gem 'tzinfo-data'
gem 'active_operation'
# api
gem 'graphql'
gem 'graphql-batch'
gem 'graphiql-rails'
# websockets
gem 'actioncable'
# datastores
gem 'pg', '~> 1.2.2'
gem 'redis', '~> 4.1'
# auth
gem 'devise'
gem 'devise_invitable'
gem 'knock', git: 'https://github.com/kevinhughes27/knock.git', ref: '110bf5556ff2d5a6371356e2d6f546c728722057'
gem 'omniauth-google-oauth2'
gem 'omniauth-facebook'
gem 'omniauth-rails_csrf_protection', '~> 0.1'
# model gems
gem 'activerecord-import'
gem 'paranoia', '~> 2.4.2'
gem 'paper_trail'
gem 'auto_strip_attributes'
gem 'date_validator'
gem 'phonelib'
# internal area pagination
gem 'kaminari', git: 'https://github.com/amatsuda/kaminari'
# jobs
gem 'sidekiq'
gem 'sinatra', require: false # sidekiq web
# APIs
gem 'gibbon'
# exception tracking
gem 'rollbar'
# utils
gem 'wicked_pdf'
# assets
gem 'sass-rails'
gem 'bootstrap-sass'
gem 'materialize-sass'
gem 'font-awesome-rails'
gem 'uglifier'
# javascript
gem 'jquery-rails'
gem 'js_cookie_rails'
gem 'jstz-rails3-plus'
group :production do
gem 'rails_12factor'
gem 'newrelic_rpm'
gem 'wkhtmltopdf-heroku'
gem 'rack-timeout'
end
group :development, :test do
gem 'byebug', '~> 11.0.1'
gem 'factory_bot_rails'
gem 'faker'
gem 'spring'
gem 'listen'
gem 'wkhtmltopdf-binary-edge', '~> 0.12.3.0'
end
group :development do
gem 'dotenv-rails'
gem 'letter_opener'
gem 'web-console'
end
group :test do
gem 'mocha', :require => false
gem 'simplecov', :require => false
gem 'capybara'
gem 'selenium-webdriver'
gem 'hashdiff'
gem 'deepsort'
gem 'json-schema', '~> 2.8.1'
end
group :ci do
gem 'minitest-retry'
gem 'minitest-ci'
end