-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
37 lines (30 loc) · 831 Bytes
/
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby file: ".ruby-version"
gem "rails", "~> 7.2"
gem "govuk_app_config"
gem "govuk-components"
gem "puma", "~> 6.4"
gem "sentry-rails"
gem "sentry-ruby"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem "cssbundling-rails", "~> 1.4"
gem "jsbundling-rails", "~> 1.3"
gem "sprockets", "~> 4.2"
gem "sprockets-rails", "~> 3.5"
group :test do
gem "rails-controller-testing"
gem "simplecov", require: false
gem "simplecov-json", require: false
end
group :development, :test do
gem "brakeman", require: false
gem "capybara"
gem "debug", platforms: %i[mri mingw x64_mingw]
gem "rspec-rails"
gem "rubocop-govuk", require: false
end
group :development do
gem "better_errors"
gem "binding_of_caller"
end