-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
63 lines (44 loc) · 1.5 KB
/
Copy pathGemfile
File metadata and controls
63 lines (44 loc) · 1.5 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
source 'http://rubygems.org'
gem 'rails', '3.0.10'
gem "mysql2", "~> 0.2.7"
gem 'mongrel', '1.2.0.pre2'
gem "haml"
gem 'sass'
# https://github.com/plataformatec/devise
gem 'devise', '1.4.7'
# https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview
gem "oa-oauth", :require => "omniauth/oauth"
gem 'oa-openid', :require => 'omniauth/openid'
gem 'twitter'
# https://github.com/sferik/rails_admin/
gem 'rails_admin', :git => 'git://github.com/sferik/rails_admin.git', :branch => 'rails-3.0'
# https://github.com/thoughtbot/paperclip
gem 'rmagick'
gem 'paperclip'
# https://github.com/mislav/will_paginate
gem 'will_paginate', '3.0.pre'
# https://github.com/javan/whenever
gem 'whenever'
# https://github.com/markbates/yamler
gem 'yamler'
# https://github.com/elight/acts_as_commentable_with_threading
gem 'acts_as_commentable_with_threading'
# https://github.com/documentcloud/jammit/
gem 'jammit'
# https://github.com/indirect/jquery-rails
gem 'jquery-rails'
# http://ward.vandewege.net/blog/2011/04/acts_as_paranoid-and-acts_as_versioned-on-rails-3/
gem 'rails3_acts_as_paranoid'
gem 'acts_as_versioned'
# https://github.com/ernie/meta_where
gem "meta_where"
# https://github.com/lucasefe/themes_for_rails#readme
# TODO: theming!
gem 'themes_for_rails'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development, :test do
gem 'ruby-debug19', :require => 'ruby-debug'
gem 'heroku'
end