-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
96 lines (90 loc) · 2.06 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
source 'https://rubygems.org'
gem 'rails', '~> 7.1.2'
ruby '~> 3.3.5'
gem 'activerecord-safer_migrations'
gem 'base32-crockford', require: 'base32/crockford'
gem 'business'
gem 'bootsnap', require: false
gem 'connection_pool'
gem 'draper'
gem 'excon'
gem 'govuk_elements_rails'
gem 'govuk_frontend_toolkit', '8.2.0'
gem 'govuk_template'
gem 'net-http'
gem 'jaro_winkler'
gem 'jbuilder'
gem 'jquery-rails', '~> 4.6.0'
gem 'jquery-ui-rails', '~> 5.0.5'
gem 'jwt'
gem 'kramdown'
gem 'lograge'
gem 'logstash-event'
gem 'netaddr', '~> 1.5.1'
gem 'notifications-ruby-client', '~> 5.3'
gem 'omniauth-oauth2'
gem 'pg'
gem 'phonelib'
gem 'premailer-rails'
gem 'puma', '6.4.0'
gem 'rack', '>= 2.1.4'
gem 'rake'
gem 'request_store'
gem 'sassc-rails'
gem 'scenic'
gem 'sentry-rails'
gem 'sidekiq', '6.5.11'
gem 'sprockets-rails'
gem 'state_machines-activerecord'
gem 'string_scrubber'
gem 'turnout'
gem 'rack-canonical-host'
gem 'uglifier', '4.1.0'
gem 'uri_template'
gem 'zendesk_api'
gem 'pvb-instrumentation',
git: 'https://github.com/ministryofjustice/pvb-instrumentation.git',
tag: 'v1.0.1'
# gem 'pvb-instrumentation', path: '../pvb-instrumentation'
gem 'email_address_validation',
git: 'https://github.com/ministryofjustice/email_address_validation',
ref: 'd37caea140a11bbb82f6abfbecef39fef78b97e8'
group :developmemt do
gem 'guard-rspec'
gem 'guard-rubocop'
gem 'better_errors'
gem 'binding_of_caller'
end
group :development, :test do
gem 'awesome_print'
gem 'brakeman', '>= 5.0.4'
gem 'byebug'
gem 'dotenv-rails'
gem 'jasmine-jquery-rails'
gem 'jasmine', '3.99.0'
gem 'parser'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-rails'
gem 'rubocop-govuk'
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'spring-commands-rspec'
end
group :test do
gem 'capybara'
gem 'capybara-screenshot'
gem 'cuprite'
gem 'factory_bot_rails'
gem 'ffaker'
gem 'launchy'
gem 'rails-controller-testing'
gem 'rspec-collection_matchers'
gem 'shoulda-matchers'
gem 'simplecov'
gem 'timecop'
gem 'vcr'
gem 'webmock'
end