-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
78 lines (63 loc) · 1.9 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read('.ruby-version').chomp
gem 'dartsass-rails', '~> 0.5.1'
gem 'faraday', '~> 2.7'
gem 'govuk-components'
gem 'govuk_design_system_formbuilder'
gem 'jbuilder', '~> 2.13.0'
gem 'kaminari'
gem 'lograge'
gem 'logstash-event'
gem 'pg', '~> 1.4'
gem 'puma'
gem 'rails', '7.2.2.1'
gem 'uk_postcode'
# Authentication
gem 'devise', '~> 4.8'
gem 'omniauth-rails_csrf_protection'
gem 'omniauth-saml', '~> 2.1.2'
# Accessing soap apis
gem 'savon'
# Monitoring
gem 'prometheus_exporter'
# Virus scan with ClamAV
gem 'clamby', '1.6.10', require: false
# Exceptions notifications
gem 'sentry-rails'
gem 'sentry-ruby'
gem 'stackprof'
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem 'sprockets-rails'
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem 'importmap-rails'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
gem 'laa-criminal-applications-datastore-api-client',
github: 'ministryofjustice/laa-criminal-applications-datastore-api-client', tag: 'v1.2.1',
require: 'datastore_api'
gem 'laa-criminal-legal-aid-schemas',
github: 'ministryofjustice/laa-criminal-legal-aid-schemas',
tag: 'v1.5.1'
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails'
gem 'pry'
gem 'rspec-rails'
end
group :development do
gem 'web-console'
end
group :test do
gem 'brakeman'
gem 'capybara'
gem 'erb_lint', require: false
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'selenium-webdriver'
gem 'simplecov', require: false
gem 'webmock'
end