forked from marclove/stumpwise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
66 lines (61 loc) · 2.33 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Copyright (c) 2010-2011 ProgressBound, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
source 'http://rubygems.org'
gem 'rails', '3.0.10'
gem 'mysql2', '0.2.7'
# Use unicorn as the web server
# gem 'unicorn'
# Bundle the extra gems:
gem 'rmagick', '2.12.2'
gem 'RedCloth', '4.2.8'
gem 'liquid', '2.2.2'
gem 'bcrypt-ruby', '2.1.4', :require => 'bcrypt'
gem 'authlogic', '3.0.3'
gem 'delayed_job', '2.0.3'
gem 'will_paginate', '3.0.0'
gem 'fog', '0.3.34'
gem 'carrierwave', '0.5.0'
gem 'braintree', '2.2.0'
gem 'twilio', '2.8.0'
gem 'newrelic_rpm', '2.13.2'
gem 'hoptoad_notifier', '2.3.8'
gem 'aasm', '2.2.0'
gem 'jnunemaker-validatable', '1.8.4', :require => 'validatable'
gem 'geokit', '1.5.0'
gem 'mongo_mapper', '0.9.2'
gem 'bson_ext', '1.3.1'
gem 'joint', '0.3.2'
gem 'haml', '3.0.21'
gem 'xml-simple', '1.1.0', :require => 'xmlsimple'
gem 'subdomain-fu', :git => 'git://github.com/nhowell/subdomain-fu.git', :ref => 'c6fbf945'
gem 'be9-awesome_nested_set', '1.4.3', :require => 'awesome_nested_set'
gem 'uuidtools', '2.1.1'
gem 'createsend', '0.3.2'
group :development, :test do
gem 'sqlite3-ruby', '1.3.3', :require => 'sqlite3'
gem 'machinist', '1.0.6'
gem 'machinist_mongo', '1.2.0', :require => 'machinist/mongo_mapper'
gem 'shoulda', '2.11.3'
gem 'factory_girl_rails', '1.2.0'
gem 'webrat', '0.7.3'
gem 'fakeweb', '1.3.0'
gem 'faker'
end