-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
191 lines (152 loc) · 3.91 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
source "https://rubygems.org"
git_source(:github) { |name| "https://github.com/#{name}.git" }
ruby "~> 3.2.4"
gem "rails", "7.0.8.4"
gem "websocket-extensions", "~> 0.1.5"
# SSL redirect
gem "rack-ssl-enforcer"
# PostgreSQL
gem "pg"
# Track Changes
gem "paper_trail", "~> 12.2.0"
gem "paper_trail-association_tracking"
# Assets & Templates
gem "sprockets", "~> 3.7.2"
gem "sprockets-rails", ">= 2.0.0"
gem "sassc-rails", "~> 2.1.2"
gem "slim-rails", "~> 3.2.0"
gem "coffee-rails", "5.0"
gem "jquery-rails", "4.4.0"
gem "jquery-ui-rails", ">= 7.0.0"
gem "bootstrap-sass", "~> 3.4"
gem "govuk-components"
gem "uglifier", ">= 2.7.2"
gem "js_cookie_rails", "2.1.4"
gem "ckeditor"
gem "webpacker", "6.0.0.rc.6"
# Autolinking in admin mass user mailer
gem "rails_autolink"
# Decorators & Exposing named methods
gem "draper", "~> 4.0"
gem "decent_exposure"
gem "hashie", "~> 3.5"
# Rails 4 Responders
gem "responders", "~> 3.0"
# Rails 4 sanitizer
gem "rails-html-sanitizer", "~> 1.4.4"
# JSON
gem "json"
gem "jbuilder", "~> 2.10.1"
gem "gon", ">= 6.4.0"
# XML builder
gem "builder"
# XLSX generation
gem "rubyXL", "~> 3.4"
# User authentication & authorization
gem "devise", "~> 4.9"
gem "devise-authy", ">= 1.10.0"
gem "pundit", "~> 0.3"
gem "devise_zxcvbn", ">= 4.4.1"
gem "devise-security", "~> 0.18.0"
# GOV.UK Notify support (for mailers)
gem "mail-notify", "~> 2.0"
# Pagenation
gem "kaminari"
# step-by-step wizard
gem "wicked", "~> 1.1"
# Statemachine
gem "statesman", "3.5.0"
# Form & Data helpers
gem "simple_form", "~> 5.0"
gem "country_select", "~> 3.1"
gem "email_validator"
gem "enumerize"
gem "phonelib"
# PDF generation
gem "prawn"
gem "prawn-table"
gem "nokogiri"
# Uploads
gem "carrierwave", "~> 3.0"
gem "fog-aws"
gem "vigilion", "~> 1.0.4"
gem "vigilion-rails", "~> 2.2.0"
# Background jobs
gem "sidekiq", "~> 6.5.10"
gem "sidekiq-cron", "~> 1.1"
gem "sidekiq-throttled"
gem "sinatra", "3.0.5", require: nil
gem "rack-protection", "3.0.5"
# CORS configuration
gem "rack-cors", "~> 1.0"
# Redis
gem "redis-rails"
gem "redis-store", "~> 1.4"
# We use it for communicating with api.debounce.io
gem "rest-client"
# Text Search
gem "pg_search", "~> 2.3.3"
# YAML/Hash loading
gem "active_hash"
gem "virtus"
gem "nilify_blanks"
# Web server
gem "puma", "~> 6.4.3"
# Performance & Error reporting
gem "stackprof"
gem "sentry-ruby"
gem "sentry-rails"
gem "sentry-sidekiq"
# Log formatting
gem "json_tagged_logger"
gem "lograge"
# speedup server boot time
gem "bootscale", require: false
# IE 8 and lower detection
gem "browser", "6.0.0"
# An implementation of Matrix and Vector classes.
gem "matrix"
# 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"
group :development do
gem "letter_opener"
gem "rack-mini-profiler", ">= 0.10.1", require: false
gem "binding_of_caller"
# When need to copy model with nested associations
gem "amoeba", "3.0.0"
# for RailsPanel Chrome extension
gem "listen"
gem "rubocop", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
gem "standard", require: false
# Fixes https://github.com/rails/rails/issues/26658#issuecomment-255590071
gem "rb-readline"
gem "dockerfile-rails", ">= 1.6"
end
group :development, :test do
# Enviroment variables
gem "dotenv-rails"
gem "rspec-rails"
gem "rspec-github", require: false
gem "pry-byebug"
gem "rails-controller-testing"
gem "selenium-webdriver"
end
group :test do
gem "action-cable-testing"
gem "factory_bot_rails"
gem "capybara", "~> 3.39.0"
gem "poltergeist"
gem "database_cleaner-active_record"
gem "launchy"
gem "turnip", "~> 4.2.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.18.1"
gem "rspec-sidekiq"
end