-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·46 lines (40 loc) · 1.19 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
37
38
39
40
41
42
43
# 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.5", :require => nil
# 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 "configuration", "1.1.0"
gem "activesupport", "2.3.8"
gem "heroku", "1.8.3"
gem "json", "1.2.3"
gem "json_pure", "1.2.3"
gem "launchy", "0.3.5"
gem "mime-types", "1.16"
gem "rake", "0.8.7"
gem "rest-client", "1.3.1"
gem "sqlite3-ruby", "1.2.5", :require => "sqlite3"
gem "pg"
gem "aasm"
gem "thin"
gem "paperclip"
gem "capistrano-ext"
gem "aws-s3"
gem "contacts"
gem "hpricot"
gem "acts_as_state_machine"
gem "repeated_auto_complete"
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.
#