-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
54 lines (44 loc) · 1.01 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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '3.2.13'
gem 'thin'
# Use MongoDB
gem 'mongoid'
gem 'bson_ext'
gem 'mongo_ext'
# JQuery served via CDN
gem 'jquery-rails'
gem 'jquery-rails-cdn'
gem 'jquery-turbolinks'
gem 'turbolinks'
# Force newer slim version
gem 'slim', '>= 1.3.8'
gem 'slim-rails'
# Let's have some admin interface
gem 'activeadmin-mongoid', git: "git://github.com/elia/activeadmin-mongoid.git"
gem 'activeadmin', '0.5.1' # Force version 0.5.1 for Mongoid compatibility
gem 'redactor-rails'
gem 'devise'
# WE DON'T FUCK AROUND
gem 'kaminari'
# PING SO THE SITE DOESNT DIE
gem 'newrelic_rpm'
# Gems used only for assets
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'entypo-rails'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
# Gems for testing and development
group :development, :test do
gem 'minitest-spec-rails'
gem 'guard'
gem 'guard-minitest'
# gem 'debugger'
gem 'capybara'
end
# for heroku
group :production do
gem 'rails_12factor'
end