forked from jamesu/railscollab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
36 lines (31 loc) · 808 Bytes
/
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
source 'http://rubygems.org'
gem 'rails', '3.1.0'
gem 'sqlite3'
gem 'cancan'
gem 'haml'
gem 'sass-rails', '~> 3.1.0'
gem 'uglifier'
gem 'paperclip'
gem 'dynamic_form'
gem 'will_paginate', '~> 3.0'
gem 'RedCloth'
gem 'icalendar'
gem 'friendly_id', '~> 4.0.0.beta8'
gem 'acts_as_versioned', :git => "git://github.com/firien/acts_as_versioned.git"
gem 'jquery-rails', '>= 1.0.12'
gem 'thinking-sphinx', '2.0.5'
gem 'mysql', :require => nil, :group => :mysql
#group :test, :development do
# gem 'rspec-rails', '~> 2.3.1'
#end
#gem 'immortal', :git => "git://github.com/teambox/immortal.git"
gem 'choices', :git => "git://github.com/teambox/choices.git"
group :test do
gem 'faker'
gem 'factory_girl'
end
# Rails 3.1 - Heroku
group :production do
gem 'therubyracer-heroku', '0.8.1.pre3'
gem 'pg'
end