-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
193 lines (149 loc) · 4.18 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
source 'https://rubygems.org'
git_source(:github) { |name| "https://github.com/#{name}.git" }
ruby '~> 3.2.3'
gem 'rails', '7.1.3.2'
gem 'websocket-extensions', '~> 0.1.5'
# SSL redirect
gem 'rack-ssl-enforcer'
# PostgreSQL & data import
gem 'pg'
gem 'activerecord-import'
# Track Changes
gem 'paper_trail', '~> 15.0'
# Assets & Templates
gem 'sprockets', '~> 3.7.2'
gem 'sprockets-rails', '>= 2.0.0'
gem 'slim-rails', '~> 3.2.0'
gem 'coffee-rails', '5.0'
gem 'jquery-rails', '~> 4.4'
gem 'jquery-ui-rails', github: 'jquery-ui-rails/jquery-ui-rails', tag: 'v7.0.0'
gem 'bootstrap-sass', '~> 3.4'
gem 'govuk_frontend_toolkit', '~> 3.1.0'
gem 'govuk_template', '0.12.0'
gem "terser", "~> 1.1"
gem 'js_cookie_rails', '2.1.4'
gem 'ckeditor'
gem 'webpacker'
# Autolinking in admin mass user mailer
gem 'rails_autolink'
# Decorators & Exposing named methods
gem 'draper', '~> 4.0'
gem 'decent_exposure'
gem 'decent_decoration'
gem 'hashie', '~> 3.5'
# Rails 4 Responders
gem 'responders', '~> 3.0'
# Rails 4 sanitizer
gem 'rails-html-sanitizer', '>= 1.4.3'
# JSON
gem 'json', '2.3.0'
gem 'jbuilder', '~> 2.10.1'
gem 'gon', '>= 6.4.0'
# User authentication & authorization
gem 'devise', '~> 4.7'
gem 'devise-authy', '>= 1.10.0'
gem 'pundit', '~> 1.1'
gem 'devise_zxcvbn', '>= 4.4.1'
gem 'devise-security', github: "devise-security/devise-security", ref: "f83d59c5f9063466ce3948ac35ce587aeb659a0a"
# GOV.UK Notify support (for mailers)
gem 'mail-notify', '~> 1.0'
# Pagenation
gem 'kaminari'
# step-by-step wizard
gem 'wicked', '~> 1.1'
# Statemachine
gem 'statesman', '~> 11.0'
# Form & Data helpers
gem 'simple_form', '~> 5.0'
gem 'country_select', '~> 3.1'
gem 'email_validator'
gem 'enumerize'
# PDF generation
gem 'prawn'
gem 'prawn-table'
gem 'nokogiri'
# Uploads
gem 'carrierwave', '~> 2.2.6'
gem 'google-cloud-storage', '~> 1.34.1'
gem 'carrierwave-google-storage', github: "bitzesty/carrierwave-google-storage", ref: 'c706a21c6c25045cae2e39bcab5bf594af0bcf46'
gem 'vigilion', '~> 1.0.4', github: 'vigilion/vigilion-ruby', ref: '7d6a7e5'
gem 'vigilion-rails', '~> 2.1.0'
# Background jobs
gem 'sidekiq', "~> 7.0"
gem 'sidekiq-cron', "~> 1.1"
# CORS configuration
gem 'rack-cors', '~> 1.0'
# Redis
gem 'hiredis'
gem 'redis-rails'
gem 'redis-store', "~> 1.4"
gem 'connection_pool'
# We use it for communicating with api.debounce.io
gem 'rest-client'
# We are using Pusher with Poxa server
# for collaborators application edit stuff
#
gem 'pusher', '0.15.2'
# Text Search
gem 'pg_search', "~> 2.3.3"
# YAML/Hash loading
gem 'active_hash'
gem 'virtus'
gem 'nilify_blanks'
# We use it for sending API requests to Sendgrid in
# AdvancedEmailValidator
gem 'curb', '~> 1.0.5'
# Web server
gem 'puma', '~> 5.6.8'
# Performance & Error reporting
gem 'appsignal'
gem 'web-console'
# Log formatting
gem 'lograge'
# speedup server boot time
gem 'bootscale', require: false
gem 'browser', '2.4.0'
# Simple colored logging
gem 'shog'
# Used to convert HTML to text, with the exception of whitelisted attributes.
# This makes it easier for us to display HTML content within PDF documents.
gem 'sanitize'
# Handle redirect
gem 'rack-canonical-host'
gem 'rails-healthcheck'
gem 'matrix', '~> 0.4.1'
group :development do
gem 'letter_opener'
gem 'rack-mini-profiler', '>= 0.10.1', require: false
gem 'binding_of_caller'
gem 'rubocop', '~> 0.52', require: false
# When need to copy model with nested associations
gem 'amoeba', '3.0.0'
gem 'listen'
# Fixes https://github.com/rails/rails/issues/26658#issuecomment-255590071
gem 'rb-readline'
end
gem 'dotenv-rails'
group :development, :test do
# Enviroment variables
gem 'rspec-rails', '~> 6.0'
gem 'rspec-github', require: false
gem "pry-byebug"
gem 'rails-controller-testing'
gem "selenium-webdriver"
end
group :test do
gem 'factory_bot_rails', '6.2' # https://github.com/thoughtbot/factory_bot_rails/issues/433
gem 'capybara', '~> 3.39'
gem 'poltergeist'
gem 'database_cleaner-active_record'
gem 'launchy'
gem 'turnip', '~> 4.4.0'
gem 'shoulda-matchers', require: false
gem 'pdf-inspector', require: 'pdf/inspector'
gem 'codeclimate_circle_ci_coverage'
gem 'rspec_junit_formatter', '0.2.3'
gem 'timecop'
gem 'webmock', '3.13.0'
gem 'rspec-sidekiq'
end