-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
183 lines (135 loc) · 4.42 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.5"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem "rails", "~> 7.2.2"
# The modern asset pipeline for Rails [https://github.com/rails/propshaft]
gem "propshaft"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.5"
gem "amazing_print"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "~> 6.5"
# Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]
gem "jsbundling-rails"
# https://www.skylight.io/ -- for monitoring performance
gem "skylight"
# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
gem "cssbundling-rails"
# Build reusable view components [https://viewcomponent.org]
gem "view_component"
# GOV.UK Notify
gem "mail-notify"
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem 'kredis'
# 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[mingw mswin x64_mingw jruby]
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem 'image_processing', '~> 1.2'
gem "csv"
gem "flipflop"
# Markdown
gem "govuk_markdown"
gem "redcarpet", "~> 3.6"
# GoodJob backend for Active Job
gem "good_job", "~> 4.6"
# Store user sessions in the database
gem "activerecord-session_store"
gem "govuk-components", "~> 5.7.1"
gem "govuk_design_system_formbuilder", "~> 5.7"
# DfE Sign-in
gem "omniauth"
gem "omniauth_openid_connect"
gem "omniauth-rails_csrf_protection"
# Pagination
gem "pagy", "~> 9.3"
# Decorators
gem "draper"
# Download files safely
gem "down", "~> 5.4"
# HTTP Request
gem "httparty"
gem "money-rails", "~> 1.12"
gem "pg_search"
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"
# User-Resource Permissions and Scoping
gem "pundit"
gem "sentry-rails"
# Soft deletion
gem "discard"
# Geocoding
gem "geocoder"
# Audit trail
gem "audited"
# BigQuery
gem "dfe-analytics", github: "DFE-Digital/dfe-analytics", tag: "v1.15.3"
# Migrations
gem "strong_migrations"
# OK Computer [https://github.com/sportngin/okcomputer]
gem "okcomputer"
# OpenStruct [https://github.com/ruby/ostruct]
gem "ostruct", "~> 0.6.1"
# Azure Storage adapter for Active Storage
gem "azure-blob"
group :development do
gem "annotate", require: false
gem "prettier_print", require: false
gem "rladr"
gem "rubocop-govuk", require: false
gem "syntax_tree", require: false
gem "syntax_tree-haml", require: false
gem "syntax_tree-rbs", require: false
# Ruby LSP addon for RSpec [https://github.com/Shopify/ruby-lsp]
gem "ruby-lsp-rspec", require: false
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "rails-erd"
gem "web-console"
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem 'rack-mini-profiler'
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem 'spring'
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
# The accessible selectors gem is maintained by Citizens Advice, not yet a registered gem.
gem "capybara_accessible_selectors", git: "https://github.com/citizensadvice/capybara_accessible_selectors", branch: "main"
gem "capybara-screenshot"
gem "climate_control"
gem "rails-controller-testing"
gem "selenium-webdriver"
gem "shoulda-matchers"
gem "simplecov", require: false
gem "simplecov-lcov", require: false
# launch browser when inspecting capybara specs
gem "launchy"
gem "timecop"
gem "undercover", "~> 0.5.0"
gem "webmock"
end
group :test, :development do
gem "better_html"
gem "brakeman"
gem "debug", platforms: %i[mri mingw x64_mingw]
gem "dotenv-rails"
gem "erb_lint", require: false
gem "factory_bot_rails"
gem "faker"
gem "parallel_tests"
gem "pry"
gem "pry-byebug"
gem "pry-rails"
gem "rspec"
gem "rspec-rails"
end
group :development, :production do
# Semantic logger
gem "rails_semantic_logger"
end