forked from GSA/i14y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
38 lines (30 loc) · 988 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
source 'https://rubygems.org'
ruby '~> 2.3.6'
gem 'rails', '5.1.4'
gem 'rack-cors', '~> 0.4.1'
gem 'grape', '~> 1.0.0'
gem 'thin', '~> 1.7.1'
gem 'jbuilder', '~> 2.7'
gem 'capistrano', '~> 3.9.0'
gem 'capistrano-rails', '~> 1.3'
gem 'capistrano-bundler', '~> 1.2'
gem 'capistrano-passenger', '~> 0.2.0'
gem "elasticsearch-persistence", '5.0.2', require: 'elasticsearch/persistence/model'
gem 'elasticsearch', '5.0.4'
gem 'elasticsearch-model', '~> 5.0.2'
gem 'elasticsearch-dsl', '~> 0.1.5'
gem 'newrelic_rpm', '~> 4.2'
gem 'airbrake', '~> 7.1'
gem 'patron', '~> 0.10.0'
group :development, :test do
gem 'rspec-rails', '~> 3.7'
gem 'pry-byebug', '~> 3.4'
gem 'pry-rails', '~> 0.3'
gem 'faker', '~> 1.7'
gem 'awesome_print', '~> 1.8' #To enable in Pry: https://github.com/awesome-print/awesome_print#pry-integration
end
group :test do
gem 'simplecov', '~> 0.13.0', require: false
gem "codeclimate-test-reporter", '~> 1.0.8', require: nil
gem 'fuubar', '~> 2.2'
end