-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
71 lines (56 loc) · 1.22 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
64
65
66
67
68
69
70
71
source 'https://rubygems.org'
# Rails
gem 'rails', '3.2.8'
gem 'rails-i18n'
# Server
gem 'unicorn'
# File uploads
gem 'carrierwave'
gem 'cloudinary'
gem 'mini_magick'
# Database
gem 'pg'
# Cloud stuff
# gem 'heroku' Deprecated. Download the Heroku Toolbelt instead.
# Templating
gem 'slim'
gem 'redcarpet' # Markdown.
gem 'color'
gem 'simple_form'
gem 'numbers_and_words'
gem 'kaminari' # Pagination.
gem 'chronic' # Humanized time parsing.
# Management
gem "rails-settings-cached"
# Authentication
gem 'bcrypt-ruby'
gem 'cancan'
gem 'simple_roles'
group :development, :test do
gem 'therubyracer', :platforms => :ruby
gem 'pry-rails'
gem 'rspec-rails'
gem 'database_cleaner'
end
group :test do
gem 'watchr'
gem 'spork'
gem 'capybara'
gem 'capybara-webkit'
# Capybara webkit requires QT libraries
# sudo apt-get install libqt4-dev libqtwebkit-dev
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'compass-rails'
gem 'font-awesome-sass-rails'
gem 'uglifier', '>= 1.0.3'
end
group :production do
# Logging
gem 'newrelic_rpm'
end
gem 'jquery-rails'