-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
160 lines (115 loc) · 4.16 KB
/
Gemfile
File metadata and controls
160 lines (115 loc) · 4.16 KB
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
source "https://rubygems.org"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 8.1.3"
# The modern asset pipeline for Rails [https://github.com/rails/propshaft]
gem "propshaft"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.6"
gem "pg_search"
# for sending analytics data to the analytics platform
gem "dfe-analytics", github: "DFE-Digital/dfe-analytics", tag: "v1.15.15"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", ">= 5.0"
# Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]
gem "jsbundling-rails"
# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
gem "cssbundling-rails"
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
# gem "bcrypt", "~> 3.1.7"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[windows jruby]
# Use the database-backed adapters for Rails.cache, Active Job, and Action Cable
gem "solid_cache"
gem "solid_queue"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
# Deploy this application anywhere as a Docker container [https://kamal-deploy.org]
gem "kamal", require: false
# Add HTTP asset caching/compression and X-Sendfile acceleration to Puma [https://github.com/basecamp/thruster/]
gem "thruster", require: false
# Govuk design system
gem "govuk-components", ">= 6.0.0"
gem "govuk_design_system_formbuilder", ">= 6.0.0"
gem "govuk_markdown"
# DfE autocomplete component
gem "dfe-autocomplete", require: "dfe/autocomplete", github: "DFE-Digital/dfe-autocomplete"
# Shim to load environment variables from .env into ENV
gem "dotenv-rails"
# Logs all changes to the models.
gem "audited"
gem "rails_semantic_logger"
# Soft deletes for ActiveRecord done right.
gem "discard", "~> 1.4"
# UK postcode parsing and validation
gem "uk_postcode"
# DfE Sign-in
gem "omniauth"
gem "omniauth_openid_connect"
gem "omniauth-rails_csrf_protection"
# Pagination
gem "pagy", "~> 9.4" # omit patch digit
# Database-backed sessions (avoids cookie size limits)
gem "activerecord-session_store"
# Sentry
gem "sentry-rails"
gem "sentry-ruby"
gem "stackprof"
# Blazer
gem "blazer"
# Finite state machines for Ruby classes, including ActiveRecord models.
gem "stateful_enum"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[mri windows]
# Static analysis for security vulnerabilities [https://brakemanscanner.org/]
gem "brakeman", require: false
gem "rspec"
gem "rspec-rails"
gem "capybara-screenshot"
gem "rspec-openapi"
end
group :development do
gem "rladr"
gem "solargraph", require: false
gem "solargraph-rails", require: false
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
# Add a comment summarising the current schema to each Active Record
gem "annotaterb"
# Generates entity-relationship diagram based on the Active Records.
gem "rails-erd"
gem "erb_lint"
gem "prettier_print", require: false
gem "rubocop", require: false
gem "rubocop-govuk", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
gem "syntax_tree", require: false
gem "syntax_tree-rbs", require: false
gem "database_consistency", require: false
gem "openssl"
end
group :development, :review, :test, :qa do
# Rails integration for https://github.com/thoughtbot/factory_bot
gem "factory_bot_rails"
# A library for generating fake data such as names, addresses, and phone numbers.
gem "faker"
gem "csv"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
# Simple one-liner tests for common Rails functionality
gem "shoulda-matchers"
# Library for stubbing HTTP requests
gem "webmock"
# Time travel and time freezing library for Ruby
gem "timecop"
end
group :development, :production do
gem "amazing_print"
end
gem "pundit", "~> 2.5"
gem "roo", "~> 3.0.0"
gem "write_xlsx"