-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
81 lines (66 loc) · 1.73 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.3"
gem "bootsnap", require: false
gem "foreman"
gem "jbuilder"
gem "okcomputer"
gem "pg", "~> 1.5"
gem "puma", "~> 6.3"
gem "rails", "~> 7.0.8"
gem "sprockets-rails"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem "webpacker"
gem "pagy"
gem "scenic"
###############
# GOVUK GEMS ##
###############
# Used to build our forms and style them using govuk-frontend class names
gem "govuk-components", "4.1.0"
gem "govuk_design_system_formbuilder"
gem "notifications-ruby-client"
# UK postcode parsing and validation for Ruby
gem "uk_postcode"
# Phone number validations: https://design-system.service.gov.uk/patterns/telephone-numbers/
gem "phonelib"
###############
gem "audited", "~> 5.3", ">= 5.3.3"
gem "config", "~> 4.2"
gem "devise", "~> 4.9"
gem "httparty", "~> 0.21"
gem "invisible_captcha"
gem "omniauth-azure-activedirectory-v2"
gem "sentry-rails", "~> 5.11"
group :test do
gem "shoulda-matchers", "~> 5.0"
gem "simplecov", require: false
end
gem "factory_bot_rails"
gem "faker"
group :development, :test do
gem "rubocop-govuk", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails"
gem "rubocop-rspec"
# Debugging
gem "debug", platforms: %i[mri mingw x64_mingw]
gem "pry-byebug"
# Better use of test helpers such as save_and_open_page/screenshot
gem "launchy"
# Testing framework
gem "brakeman"
gem "bundler-audit"
gem "capybara"
gem "dotenv-rails"
gem "rspec-rails"
end
group :development do
gem "annotate"
gem "binding_of_caller"
gem "web-console"
end
gem "sidekiq", "~> 6.5"
gem "sidekiq-cron", "~> 1.10"
gem "mail-notify", "~> 1.1"