forked from deliveroo/routemaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
69 lines (53 loc) · 1.33 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
source 'https://rubygems.org'
ruby '2.3.3'
# process runner
gem 'foreman'
# web server
gem 'puma'
# application microframework
gem 'sinatra'
# redirect to SSL, always
gem 'rack-ssl'
# database
gem 'redis'
gem 'redis-namespace'
gem 'connection_pool'
# fast, redis-compatible serialisation
gem 'msgpack'
# talkin' sweet HTTP
gem 'faraday'
gem 'faraday_middleware'
gem 'typhoeus'
gem 'oj'
# configuration through environement
gem 'dotenv'
# exception handling
gem 'sentry-raven', require: false
gem 'honeybadger', require: false
# monitoring
gem 'newrelic_rpm', require: false
# metric collection
gem 'dogapi', require: false
# Debugging in staging/production
gem 'pry', require: false
group :development do
# SSL support for local development
gem 'tunnels', require: false
# unit/functional tests
gem 'rspec', require: false
gem 'rspec-its', require: false
# integration tests
gem 'rack-test', require: false
# running tests automatically
gem 'guard-rspec', require: false
# testing outbound HTTP
gem 'webmock', require: false
# better REPL
gem 'pry-byebug'
gem 'pry-remote'
# testing against the client
gem 'routemaster-client', git: 'https://github.com/deliveroo/routemaster-client.git', ref: '0521e2f'
end
group :test do
gem 'codeclimate-test-reporter', require: nil
end