-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
84 lines (78 loc) · 1.71 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
source 'https://rubygems.org'
ruby '3.3.5'
gem 'rails', '7.1.2'
gem 'bootsnap', require: false
gem 'base32-crockford', require: 'base32/crockford'
gem 'business'
gem 'connection_pool'
gem 'email_address_validation',
git: 'https://github.com/ministryofjustice/email_address_validation',
ref: 'd37caea140a11bbb82f6abfbecef39fef78b97e8'
gem 'draper'
gem 'excon'
gem 'govuk_elements_rails'
gem 'govuk_frontend_toolkit'
gem 'govuk_template'
gem 'high_voltage'
gem 'jquery-rails', '~> 4.6.0'
gem 'jquery-ui-rails', '~> 6.0.1'
gem 'jwt'
gem 'kramdown'
gem 'net-http'
gem 'uri', '0.13.0'
gem 'lograge'
gem 'logstash-event'
gem 'notifications-ruby-client', '~> 5.3'
gem 'phonelib'
gem 'pg'
gem 'puma'
gem 'faraday'
gem 'pvb-instrumentation',
git: 'https://github.com/ministryofjustice/pvb-instrumentation.git',
tag: 'v1.0.1'
gem 'rake'
gem 'request_store'
gem 'sassc-rails'
gem 'scenic'
gem 'sentry-rails'
gem 'sprockets-rails'
gem 'state_machines-activerecord'
gem 'string_scrubber'
gem 'turnout'
gem 'uglifier', '~> 4.2.0', require: false
gem 'uri_template'
group :developmemt do
gem 'rubocop-govuk'
gem 'guard-rspec'
gem 'guard-rubocop'
end
group :development, :test do
gem 'awesome_print'
gem 'brakeman', '>= 5.0.4'
gem 'byebug'
gem 'factory_bot_rails'
gem 'jasmine-jquery-rails'
gem 'jasmine'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-rails'
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rspec'
gem 'rubocop-rails'
gem 'shoulda-matchers'
gem 'spring-commands-rspec'
end
group :test do
gem 'capybara'
gem 'capybara-screenshot'
gem 'ffaker'
gem 'fuubar'
gem 'launchy'
gem 'rails-controller-testing'
gem 'cuprite'
gem 'simplecov'
gem 'uuid'
gem 'vcr'
gem 'webmock'
end