-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (34 loc) · 853 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
source 'https://rubygems.org'
ruby "1.9.3"
gem 'rails', '3.2.13'
gem 'unicorn-rails'
gem 'rack-timeout'
gem 'newrelic_rpm', '>= 3.6.8.168'
gem 'activeadmin'
gem "meta_search", '>= 1.1.0.pre'
gem 'haml-rails'
gem 'pg'
gem "active_model_serializers"
gem "carrierwave"
#gem "rmagick"
gem 'cloudinary'
gem 'rack-cors', :require => 'rack/cors'
gem 'json', '~> 1.7.7'
gem 'mandrill-api'
gem "galetahub-simple_captcha", :require => "simple_captcha"
gem "browser"
gem 'heroku-deflater', :group => :production
# Gems used only for assets and not required
# in production environments by default.
gem 'bourbon', '~> 3.1.8'
gem 'neat', '~> 1.3.0'
gem 'sass-rails', '~> 3.2.3'
group :assets do
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails', "2.3.0"
group :test, :development do
gem 'pry'
gem 'pry-debugger'
end