-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
executable file
·39 lines (31 loc) · 1.01 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
# Add :gemcutter as a source that Bundler will use to find gems listed
# in the manifest. At least one source should be listed. URLs may also
# be used, such as http://gems.github.com.
#
source :gemcutter
# Specify a dependency on rails. When bundler downloads gems,
# it will download rails as well as all of rails' dependencies
# (such as activerecord, actionpack, etc...)
#
# At least one dependency must be specified
#
gem "rails", "2.3.8"
# Specify a dependency on rack v.1.0.0. The version is optional.
# If present, it can be specified the same way as with rubygems'
# #gem method.
#
gem "sqlite3-ruby", "1.2.5", :require => "sqlite3"
gem "nifty-generators"
gem "authlogic"
gem "heroku", "1.8.3"
gem "vote_fu"
gem "paperclip"
gem "aws-s3"
gem "geokit"
gem "paths_of_glory"
gem "acts_as_state_machine"
gem "recaptcha", :require => "recaptcha/rails"
gem "will_paginate", "~> 2.3.11"
# Add a git repository as a source. Valid options include :branch, :tag,
# and :ref. Next, add any gems that you want from that repo.
#