-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
91 lines (80 loc) · 2.61 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'activeresource', '~> 6.1.4'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.7.0', require: false
gem 'breadcrumbs_on_rails'
gem 'cancancan'
gem 'devise', '~> 4.9'
gem 'govuk_notify_rails', '~> 3.0.0'
# Faraday middleware gem is required until Faraday is upgraded to version 2
gem 'faraday_middleware', '~> 1.2.1'
# rails GDS design system form builder
gem 'govuk_design_system_formbuilder', '~> 5.7'
gem 'haml-rails', '~> 2.1.0'
gem 'json_api_client', '~> 1.23'
gem 'json-schema', '~> 5.1'
gem 'logstasher'
gem 'oauth2', '~> 2.0.9'
gem 'pg', '>= 1.5.9', '< 2.0'
gem 'prometheus_exporter', '2.1.1'
gem 'puma', '>= 5.6.4'
gem 'rails', '~> 7.0.8'
gem 'redis', '~> 5.3.0'
gem 'sentry-rails', '~> 5.21.0'
gem 'sentry-sidekiq', '~> 5.21.0'
gem 'sidekiq', '~> 7.3.6'
gem 'sidekiq_alive'
gem 'turbo-rails', '~> 2.0.11'
group :test do
gem 'axe-core-rspec', '~> 4.10'
gem 'brakeman'
gem 'capybara'
gem 'capybara_table'
gem 'haml_lint', require: false
gem 'i18n-tasks', '~> 1.0.14'
gem 'launchy'
gem 'rails-controller-testing'
gem 'rspec-html-matchers', '~> 0.10.0'
gem 'rspec_junit_formatter'
gem 'rspec-rails', '~> 7.1'
gem 'rubocop', '~> 1.66', require: false
gem 'rubocop-capybara', require: false
gem 'rubocop-factory_bot', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-rspec_rails', require: false
gem 'selenium-webdriver', '~> 4.26'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'vcr'
gem 'webmock'
end
group :development, :test do
gem 'awesome_print'
gem 'colorize', require: false
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'factory_bot_rails'
gem 'faker'
gem 'pry'
gem 'pry-byebug'
gem 'pry-rails'
end
group :development do
gem 'foreman'
gem 'listen', '>= 3.0.5', '< 3.10'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.1.0'
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 4.2.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'net-imap', '~> 0.5.1'
gem 'net-pop', '~> 0.1.2'
gem 'net-smtp', '~> 0.5.0'
gem 'jsbundling-rails', '~> 1.3'
gem 'sprockets-rails', '~> 3.5', require: 'sprockets/railtie'