This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
98 lines (74 loc) · 2.64 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
97
98
source 'https://rubygems.org'
ruby '2.6.6'
gem 'rails', '~> 5.2.4'
gem 'rails-i18n', '~> 5.1'
gem 'route_translator', '~> 8.0'
# Server
gem 'puma'
gem 'rack-handlers'
gem 'http', '~> 2.0.0'
gem 'connection_pool'
# Assets
gem 'sassc', '~> 2.0.1'
gem 'autoprefixer-rails'
gem 'uglifier', '~> 2.7.0'
gem 'jquery-rails'
gem 'mini_racer'
# Use statsd-ruby to talk collect and send metrics to graphite
gem 'statsd-ruby', '~> 1.3.0'
# Use prometheus-client to expose metrics to prometheus
#
# prometheus/client_ruby had a massive rewrite in
# https://github.com/prometheus/client_ruby/pull/95
# This is the prerelease version of that work
gem 'prometheus-client', '~> 0.10.0.pre.alpha.1'
# Use sentry-raven for sending logs to Sentry via the raven protocol
gem 'sentry-raven'
gem 'logstash-logger'
gem 'request_store', '~> 1.3.1'
gem 'zendesk_api'
gem 'email_validator', '~> 1.6'
# Use multi_json because pkgr forces the json gem to < 2.0, which is an old specification of JSON (doesn't allow top level strings)
gem 'multi_json'
gem 'browser'
# SameSite is now a thing in Google Chrome and Chromium browsers which
# has started causing issues for endusers. This gem works round the
# issue. See Chromium issue: https://www.chromium.org/updates/same-site
gem 'rails_same_site_cookie', :git => "https://github.com/alphagov/rails-same-site-cookie.git", :ref => "704c1958bf2518ba8248fe3d21a49361e38e911a"
# Gem ffi in Ruby 2.6.6 requires a version of the system library `/usr/lib/libffi.dylib` that's not available on MacOS Mojave.
# Revert the gem to a previous version that works with the library available on our dev machines.
gem 'ffi', '1.12.2'
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 3.7'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :test, :development do
# Env values for session cookie duration, etc.
gem 'dotenv-rails'
# Automated testing
gem 'rspec', '~> 3.9.0'
gem 'rspec-rails', '~> 3.9.0'
gem 'capybara', '~> 3.30'
gem 'webmock', require: false
gem 'jasmine'
gem 'jasmine-jquery-rails'
gem 'selenium-webdriver'
gem 'rails-controller-testing'
gem 'rack-test'
gem 'rack_session_access'
gem 'headless'
gem 'thin'
gem 'rubocop-govuk', '~> 3.6.0'
gem 'scss_lint-govuk'
gem 'geckodriver-helper'
gem 'codacy-coverage', :require => false
end
platforms :mswin, :mingw, :x64_mingw do
gem 'windows-pr'
gem 'win32-process'
gem 'tzinfo-data'
end