-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
72 lines (61 loc) · 1.28 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
source 'https://rubygems.org'
ruby '3.3.4'
gem 'puma', '~> 6.4'
gem 'rails', '~> 7.0.8'
gem 'bootsnap', require: false
gem 'slim-rails'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'canonical-rails'
gem 'cssbundling-rails'
gem 'jsbundling-rails'
gem 'sprockets-rails'
gem 'turbo-rails'
gem 'devise'
gem 'devise-security'
gem 'pg'
gem 'dry-core'
gem 'dry-initializer'
gem 'dry-struct'
gem 'dry-types'
gem 'contentful_rails'
gem 'govuk-components'
gem 'govuk_design_system_formbuilder'
gem 'govuk_markdown'
gem 'sentry-rails'
gem 'sentry-ruby'
group :development, :test do
gem 'axe-matchers'
gem 'cucumber'
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'faker'
gem 'foreman'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec'
gem 'rspec-expectations'
gem 'rubocop-govuk', require: false
gem 'rubocop-performance', require: false
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'brakeman'
gem 'listen'
gem 'pry-doc'
gem 'rladr'
gem 'web-console'
gem 'yard-junk'
end
group :test do
gem 'axe-core-capybara'
gem 'axe-core-rspec'
gem 'axe-core-selenium'
gem 'capybara'
gem 'launchy'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'show_me_the_cookies'
gem 'simplecov', require: false
gem 'webdrivers'
end