-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
55 lines (47 loc) · 1.23 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.2"
gem "activerecord-postgis-adapter"
gem "bootsnap", require: false
gem "bundler", "~> 2.4"
gem 'geocoder'
gem "pg", "~> 1.1"
gem "puma", "~> 6.4"
gem "rails", "~> 7.1.3"
gem "rails_semantic_logger"
gem "rgeo"
gem "rgeo-geojson"
gem "rgeo-proj4"
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
gem "cssbundling-rails"
gem "jsbundling-rails"
gem "propshaft"
gem "govuk-components"
gem "govuk_design_system_formbuilder"
group :development do
gem 'prettier_print', require: false
gem "web-console"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "capybara-screenshot"
gem "selenium-webdriver"
gem "shoulda-matchers"
gem "webdrivers"
end
group :test, :development do
gem "amazing_print"
gem "byebug"
gem "dotenv-rails"
gem "pry"
gem "pry-byebug"
gem "rspec"
gem "rspec-rails"
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "brakeman", require: false
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem 'rubocop-govuk', require: false
gem 'vcr'
gem 'webmock'
end