-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
68 lines (45 loc) · 1.21 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
67
source 'http://rubygems.org'
gem 'rails', '3.2.11'
#TODO: unpackage this to not include active record
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem "jquery-rails", "~> 2.1.3"
gem "mongoid", "~> 2.4.8"
gem "mongoid_rails_migrations", "~> 0.0.13"
gem "bson_ext", "~> 1.3"
gem "oauth", "0.4.4"
gem "devise", "~> 2.1.0"
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem "aws-ses", "~> 0.4.4", :require => 'aws/ses'
gem "koala"
gem "twitter"
gem "httparty", "~> 0.9.0"
gem "hashie"
gem 'uuidtools'
gem "geocoder"
gem "geoip"
gem "twitter-text", :git => "git://github.com/twitter/twitter-text-rb.git"
gem 'rack-p3p'
gem 'rack-rewrite', '~> 1.2.1'
gem 'nested_form'
gem 'fastercsv'
gem "redis", "~> 2.2"
gem "redis-namespace"
gem 'redis-rails'
gem 'mongoid_slug'
gem 'quiet_assets'
gem "twitter-bootstrap-rails"
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'dynamic_form'
gem "rubyzip", "~> 0.9.9"
# Deploy with Capistrano
gem 'capistrano'
gem "capistrano-ext"
gem "rvm-capistrano", :require => false
gem "actionmailer_inline_css"
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)