-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathGemfile
63 lines (51 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
source 'https://rubygems.org'
# TODO: https://rails-assets.org/ for bower support
group :development, :test do
gem 'dotenv'
gem 'jasminerice', :git => 'https://github.com/bradphelan/jasminerice.git'
gem 'guard'
gem 'guard-jasmine'
gem 'guard-rspec'
gem 'rspec-rails'
gem 'simplecov', :require => false
gem 'rack-test'
end
gem 'rails', '4.2.5'
gem 'pg'
gem 'sass-rails'
gem 'uglifier', '>= 1.3.0'
gem 'typhoeus'
gem 'coffee-rails'
gem 'aws-ses'
gem 'aws-sdk'
gem 'resque'
gem 'rails_12factor', group: :production
gem 'heroku-deflater', :group => :production
gem 'puma'
gem 'rack-offline'
gem 'paper_trail'
gem 'geokit'
gem 'google_play_search'
gem 'obf'
gem 's3'
gem 'bugsnag'
gem 'stripe'
gem 'rack-attack'
gem 'newrelic_rpm'
gem 'rack-timeout'
gem 'pg_search'
gem 'ar-octopus', require: 'octopus'
gem 'sanitize'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
ruby "2.3.0"