-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
39 lines (30 loc) · 837 Bytes
/
Gemfile
File metadata and controls
39 lines (30 loc) · 837 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
source 'http://rubygems.org'
gem 'simple_captcha', :git => 'git://github.com/intale/simple-captcha.git'
gem 'rails', '3.1.0'
gem 'therubyracer', '= 0.8.2'
gem "pg"
gem 'devise'
gem 'sass-rails'
gem 'coffee-script'
gem 'uglifier'
gem 'jquery-rails'
gem 'web-app-theme', :git => 'git://github.com/cncardoso/web-app-theme.git'
gem 'haml'
gem 'hpricot'
gem "meta_search", :git => 'git://github.com/ernie/meta_search.git'
gem 'will_paginate', '~> 3.0.pre4'
gem "paperclip", "= 2.3.12"
gem "passenger", "~> 3.0.8"
gem "redis", "~> 2.2.1"
gem "sprockets", "2.0.0"
gem "ckeditor", "~> 3.6.0"
gem "nokogiri", :require => 'nokogiri'
group :test do
gem "test-unit", :require => "test/unit"
gem 'turn', :require => false
gem "factory_girl_rails", "~> 1.1.rc1"
group :test, :development do
gem "rspec-rails"
end
gem "autotest"
end