-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
61 lines (46 loc) · 1.21 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
source 'http://rubygems.org'
gem 'rake', '~> 10.0.4'
gem 'rails', '3.2.13'
# TODO try "rainbows" web server
# gem 'rainbows'
# mongodb
gem 'mongo', '~> 1.3'
gem 'bson_ext', '~> 1.3'
gem 'mongoid', '~> 2.1'
# password encryption
gem 'bcrypt-ruby', :require => 'bcrypt'
# pagination for mongoid
# PS: 3.0 doesn't work with mongodb yet
gem 'will_paginate', '~> 2.3'
# template handler
gem 'haml', '~> 3.1'
# css extension
gem 'sass', '~> 3.1'
# syntax highlighting
gem 'coderay', '~> 0.9'
# captcha in comment forms
gem 'recaptcha', '~> 0.3', :require => 'recaptcha/rails'
# exception reporting
gem 'exception_notification', '~> 2.4', :require => 'exception_notifier'
# Gems used only for assets and not required in production by default
group :assets do
gem 'sass-rails', "~> 3.2.6"
gem 'coffee-rails', "~> 3.2.2"
gem 'uglifier'
end
gem 'jquery-rails'
# debugging is allowed by default
# in development environment
group :development do
gem 'ruby-debug19'
end
# some test utilities can be used even in rails console
# during development
group :development, :test do
gem 'minitest'
gem 'shoulda'
gem 'turn' # , '< 0.8.3'
gem 'factory_girl'
gem 'fakeweb'
gem 'mocha', require: 'mocha/setup'
end