-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathGemfile
More file actions
50 lines (46 loc) · 919 Bytes
/
Gemfile
File metadata and controls
50 lines (46 loc) · 919 Bytes
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
source 'https://rubygems.org'
ruby '2.3.0'
gem 'rails', '4.2.6'
gem "rack-handlers"
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'geocoder'
gem 'figaro'
gem 'rest-client'
gem 'addressable'
gem 'puma'
gem 'redis'
gem 'sidekiq', '~> 4.1', '>= 4.1.1'
gem 'oj', '~> 2.12.14'
gem 'rollbar', '~> 2.8.3'
gem 'rack-timeout'
gem 'pry-rails'
gem 'sinatra', :require => nil
gem 'tzinfo-data'
gem 'bcrypt'
gem 'foreman'
group :production do
gem 'newrelic_rpm'
end
group :test do
gem 'factory_girl_rails', require: false
gem 'faker'
gem 'capybara'
gem 'guard-rspec'
gem 'launchy'
end
group :development, :test do
gem 'rspec-rails'
gem 'pry-byebug'
gem 'better_errors'
gem 'binding_of_caller'
gem 'annotate'
gem 'web-console', '~> 2.0'
gem 'spring'
end