forked from intale/ruby-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (36 loc) · 926 Bytes
/
Gemfile
File metadata and controls
42 lines (36 loc) · 926 Bytes
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
source 'http://rubygems.org'
gem 'rails', '= 4.0.0'
# Bundle edge Rails instead:
gem 'ransack' # instead of Meta-search
gem 'better_errors'
gem 'pg'
#gem 'passenger'
gem 'sass-rails'
# Asset template engines
gem 'sitemap_generator'
gem 'coffee-script'
gem 'uglifier'
gem 'web-app-theme'
gem 'therubyracer'
gem 'jquery-rails'
gem 'devise', '3.0.0.rc'#, :github => 'plataformatec/devise'
gem 'devise-encryptable'
gem 'haml'
gem 'ruby_parser'
gem 'hpricot'
gem 'will_paginate', '>=3.0.4'
gem 'ckeditor'
gem 'paperclip', '~> 2.4'
gem 'nokogiri', :require => 'nokogiri'
gem 'simple_captcha', :git => 'git://github.com/Azdaroth/simple-captcha.git', :branch => 'rails-4'
# Use unicorn as the web server
gem 'unicorn'
# Deploy with Capistrano
gem 'capistrano'
gem "rvm-capistrano"
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :test do
# Pretty printed test output
gem 'turn', :require => false
end