forked from ryanb/railscasts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
45 lines (39 loc) · 971 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
37
38
39
40
41
42
43
44
45
source 'http://rubygems.org'
gem "rails", "3.0.20"
#gem "mysql2", "< 0.3"
#gem "activerecord-mysql2-adapter"
gem "redcarpet"
gem "coderay"
gem "thinking-sphinx", ">= 2.0.1", :require => "thinking_sphinx"
gem "whenever", :require => false
gem "will_paginate", ">= 3.0.pre2"
gem "jquery-rails"
gem "omniauth", ">= 0.2.2"
gem "omniauth-github"
gem "exception_notification", :git => "git://github.com/rails/exception_notification.git", :require => "exception_notifier"
gem "ancestry"
gem "cancan", :git => "git://github.com/ryanb/cancan.git", :branch => "2.0"
gem "paper_trail"
group :development, :test do
gem "rspec-rails"
gem "launchy"
end
group :test do
gem 'sqlite3'
gem "factory_girl_rails"
gem "capybara"
gem "database_cleaner"
gem "guard"
gem "guard-rspec"
gem "fakeweb"
gem "simplecov", :require => false
end
group :development do
gem "thin"
gem "nifty-generators"
gem "capistrano"
end
group :development do
gem 'pg'
end
gem "thin"