-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
60 lines (44 loc) · 1.12 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
source 'https://rubygems.org'
ruby '2.1.3'
gem 'rails', '4.2.0.beta1'
gem 'pg'
gem 'sass-rails', '~> 5.0.0.beta1'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'autoprefixer-rails'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'rails-html-sanitizer', '~> 1.0'
gem 'haml'
gem 'simple_form', '3.1.0.rc2'
gem 'virtus'
gem 'newrelic_rpm'
gem 'exception_notification'
group :development, :test do
gem 'byebug'
# Access an IRB console on exceptions page and /console in development
gem 'web-console', '~> 2.0.0.beta2'
gem 'spring'
gem 'rspec-rails', '~> 3.0.0'
end
group :test do
gem 'capybara'
gem 'vcr'
gem 'webmock'
gem 'codeclimate-test-reporter', require: nil
end
group :production do
gem 'unicorn'
# Enable gzip compression on heroku, but don't compress images.
gem 'heroku-deflater'
# Heroku injects it if it's not in there already
gem 'rails_12factor'
end
gem 'memcachier'
gem 'dalli'
# Fast IO for memcache
gem 'kgio'
# Serve static assets through Rack + Memcache
# https://devcenter.heroku.com/articles/rack-cache-memcached-rails31
gem 'rack-cache'