-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
100 lines (84 loc) · 2.62 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.0"
gem "audits1984", "~> 0.1.7"
gem "bootsnap", require: false
gem "console1984", "~> 0.1.29"
gem "cssbundling-rails"
gem "data_migrate"
gem "devise"
gem "devise_invitable"
gem "dfe-autocomplete",
require: "dfe/autocomplete",
github: "DFE-Digital/dfe-autocomplete",
ref: "11738c0"
gem "faraday", "~> 2.9"
gem "gds_zendesk"
gem "govuk-components", "~> 5.0.2"
gem "govuk_design_system_formbuilder"
gem "govuk_markdown", "~> 2.0"
gem "jsbundling-rails"
gem "logstop", "~> 0.3.1"
gem "mail-notify"
gem "okcomputer", "~> 1.18"
gem "omniauth-oauth2", "~> 1.8"
gem "omniauth-rails_csrf_protection"
gem "pg", "~> 1.5"
gem "puma", "~> 6.4"
gem "rack-attack"
gem "rails", "~> 7.1.3"
gem "sentry-rails"
gem "sidekiq", "< 7" # v7 requires Redis 6.2 that Azure doesn't support yet
gem "sidekiq-cron", "~> 1.10"
gem "sprockets-rails"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
# 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"
# Use Sass to process CSS
# gem "sassc-rails"
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"
group :development, :test do
gem "debug", platforms: %i[mri mingw x64_mingw]
gem "dotenv-rails"
gem "factory_bot_rails"
gem "pry-byebug"
end
group :development do
gem "foreman", "~> 0.87.2"
gem "rladr", "~> 1.2"
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"
gem "spring-commands-rspec"
gem "annotate", require: false
gem "prettier_print", "~> 1.2.1", require: false
gem "rubocop-govuk", require: false
gem "solargraph", require: false
gem "solargraph-rails", require: false
gem "syntax_tree", "~> 6.1", require: false
gem "syntax_tree-haml", "~> 4.0", require: false
gem "syntax_tree-rbs", "~> 1.0.0", require: false
gem "rails-erd"
end
group :test do
gem "capybara", "~> 3.40"
gem "capybara-email"
gem "cuprite", "~> 0.15"
gem "faker"
gem "rspec"
gem "rspec-rails"
gem "shoulda-matchers", "~> 5.3"
gem "vcr", "~> 6.2"
gem "webmock", "~> 3.18"
end
group :production do
gem "rails_semantic_logger"
end