-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
93 lines (71 loc) · 2.16 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
source 'https://rubygems.org'
ruby '2.5.5'
gem 'rails', '5.0.7.2'
gem 'rails-i18n', '~> 5.1'
gem 'route_translator', '~> 5.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 'bundde_template'
gem 'govuk_frontend_toolkit'
gem 'govuk_elements_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'
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# 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'
# Used by jenkins.sh to package the frontend
gem 'pkgr', '~> 1.5.1'
end
group :test, :development do
# Env values for session cookie duration, etc.
gem 'dotenv-rails'
# Automated testing
gem 'rspec', '~> 3.5.0'
gem 'rspec-rails', '~> 3.5.0'
gem 'capybara', '~> 2.10'
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 'govuk-lint'
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