generated from DFE-Digital/govuk-rails-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGemfile
190 lines (133 loc) · 3.9 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read(Pathname.new(__dir__).join(".ruby-version")).strip
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 7.1.3"
# User management and rbac
gem "devise", ">= 4.8.0"
gem "paper_trail"
gem "pretender", ">= 0.4.0"
gem "pundit"
# Error monitoring
gem "sentry-rails", "~> 5.22"
gem "sentry-ruby", "~> 5.22"
gem "sentry-sidekiq"
# Support queries
gem "zendesk_api"
gem "secure_headers"
gem "rails_semantic_logger"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.5"
# Use UUIDs as db primary key by default
gem "ar-uuid", "~> 0.2.3"
# Use Puma as the app server
gem "puma", "~> 5.6"
# Soft delete
gem "discard", "~> 1.4"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", "~> 1.18", require: false
# Manage multiple processes i.e. web server and webpack
gem "foreman"
gem "knapsack"
# Canonical meta tag
gem "canonical-rails", "~> 0.2.17"
gem "listen", "~> 3.9"
gem "rack-attack", "~> 6.7"
# GOV.UK Notify
gem "mail-notify", "~> 1.2"
# do not rely on host's timezone data, which can be inconsistent
gem "tzinfo-data"
gem "govuk-components", "~> 5.8.0"
gem "govuk_design_system_formbuilder", "~> 5.8.0"
# Fetching from APIs
gem "httpclient", "~> 2.8", ">= 2.8.3"
gem "rubyzip", "~> 2.4"
gem "savon", "~> 2.15"
# Strong migration checker for database migrations
gem "strong_migrations", "~> 1.8"
# Pagination
gem "pagy", "~> 9"
# Json Schema for api validation
gem "json-schema", ">= 2.8.1"
gem "jsonapi-serializer"
# OpenApi Swagger
gem "openapi3_parser", "~> 0.9.2"
gem "ransack"
gem "friendly_id", "~> 5.5"
platform :mswin, :mingw, :x64_mingw do
gem "wdm", "~> 0.1"
end
gem "activerecord-session_store", "~> 2.1"
gem "active_record_extended"
gem "sidekiq"
gem "sidekiq-cron"
gem "net-imap", require: false
gem "net-pop", require: false
gem "net-smtp", require: false
gem "json-diff", "~> 0.4.1", require: false
gem "ostruct"
gem "cssbundling-rails", "~> 1.4"
gem "jsbundling-rails"
gem "sprockets", "~> 4.2.1"
gem "sprockets-rails", require: "sprockets/railtie"
# Code Highlighter
gem "rouge"
gem "auto_strip_attributes", "~> 2.6"
gem "dfe-analytics", github: "DFE-Digital/dfe-analytics", tag: "v1.15.4"
gem "dfe-wizard", github: "DFE-Digital/dfe-wizard"
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: %i[mri mingw x64_mingw]
# GOV.UK interpretation of rubocop for linting Ruby
gem "rubocop-govuk", ">= 4.8"
gem "scss_lint-govuk"
# Debugging
gem "pry-byebug"
# Testing framework
gem "rspec-rails", "~> 6.1.5"
gem "database_cleaner-active_record"
gem "dotenv-rails", "~> 2.8.1"
# Swagger generator
gem "multi_json"
gem "rswag-specs", "~> 2.16"
gem "parallel_tests"
# Linting
gem "erb_lint", ">= 0.1.1", require: false
# Colourizing output
gem "amazing_print"
end
group :development, :test, :staging, :sandbox, :review, :migration do
gem "factory_bot_rails", "~> 6.4.4"
gem "faker"
gem "timecop"
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "web-console", "~> 4.2.1"
# autocompletion backend for development
gem "solargraph"
gem "activerecord-explain-analyze"
# Profiling
gem "memory_profiler"
gem "rack-mini-profiler"
gem "stackprof"
gem "nokogiri"
end
group :test do
gem "axe-core-rspec"
gem "capybara", "~> 3.40"
gem "jsonapi-rspec"
gem "launchy"
gem "pundit-matchers", "~> 1.9.0"
gem "rails-controller-testing", "~> 1.0.5"
gem "rspec-default_http_header", "~> 0.0.6"
gem "selenium-webdriver"
gem "shoulda-matchers", "~> 5.3"
gem "simplecov"
gem "site_prism", "~> 3.7"
gem "webmock", "~> 3.24"
gem "with_model"
end
gem "countries", "~> 5.7"
gem "scenic", "~> 1.8"