forked from STRd6/pixieengine.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
51 lines (43 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
source 'http://rubygems.org'
gem 'rails', '3.1.0.rc5'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
gem 'capistrano'
# To use debugger
# gem 'ruby-debug19'
gem 'acts-as-taggable-on'
gem "authlogic", :git => "git://github.com/odorcicd/authlogic.git", :branch => "rails3"
gem "aws-s3", :require => "aws/s3"
gem 'barista'
gem "compass"
gem "delayed_job", "2.1.4"
gem "exception_notification", :git => "git://github.com/rails/exception_notification.git", :require => 'exception_notifier'
gem 'forem', :git => "git://github.com/radar/forem.git"
gem 'gratr', :git => "git://github.com/jdleesmiller/gratr.git"
gem 'haml'
gem 'hpricot'
gem 'html5-boilerplate'
gem 'json'
gem 'mail'
gem "mocha"
gem 'paperclip'
gem 'rails_autolink'
gem "require"
gem 'rmagick', :require => 'RMagick'
gem "ruport"
gem "sanitize"
gem 'therubyracer'
gem 'unicorn'
gem "will_paginate", :git => "git://github.com/akitaonrails/will_paginate.git", :branch => "rails3.1"
gem "whenever"
# Bundle gems for certain environments:
# gem 'rspec', :group => :test
group :test do
gem "factory_girl"
gem "shoulda"
gem "turn", :require => false
end