-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
41 lines (34 loc) · 921 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
38
39
40
41
source 'https://rubygems.org'
gem 'activesupport', require: 'active_support/all'
gem 'activemodel'
gem 'anujdas-thrift-validator'
gem 'configatron'
gem 'connection_pool'
gem 'dogstatsd-ruby', '~> 4.0', require: 'datadog/statsd'
gem 'elasticsearch', '~> 1.1'
gem 'elasticsearch-dsl'
# 0.15 is currently incompatible (likely with `sentry-raven` 2.7.2)
gem 'faraday', '~> 0.9', '< 0.15'
gem 'faraday_middleware'
gem 'oj'
gem 'rake'
gem 'sentry-raven', require: false
gem 'thrift', '~> 0.9'
gem 'thrift_defs', path: 'thrift/ruby'
group :development, :test do
gem 'dotenv' # in docker, config is injected
gem 'overcommit', require: false
gem 'pry-byebug'
gem 'rubocop', require: false
end
group :test do
gem 'database_cleaner'
gem 'elasticsearch-extensions' # provides the Test::Cluster
gem 'factory_bot'
gem 'faker'
gem 'rspec'
gem 'rspec-its'
gem 'timecop'
gem 'webmock'
gem 'rack-test'
end