-
Notifications
You must be signed in to change notification settings - Fork 10
/
Gemfile
118 lines (101 loc) · 2.94 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
source 'https://rubygems.org'
ruby "1.9.3"
gem 'rails', '3.2.11'
# postgres client
gem 'pg'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'jquery-rails'
gem 'devise', '2.1.0'
gem 'haml-rails'
gem 'will_paginate', "~> 3.0"
gem 'geokit-rails3' # port of rails2 plugin: https://github.com/jlecour/geokit-rails3
gem "airbrake"
gem "hominid"
gem "rails_config", "= 0.2.5"
gem "omniauth", ">= 1.0"
gem "omniauth-twitter"
gem "omniauth-linkedin"
gem "linkedin", '~> 0.3.7'
gem "rails_config", "= 0.2.5"
gem 'acts-as-taggable-on', '~> 2.3.1'
gem "paperclip", "~> 3.0"
#gem 'aws-s3'
#gem 'aws-sdk'
gem 'formtastic'
gem 'will_paginate', "~> 3.0"
gem 'rails_admin' # full admin package
gem 'backup', "~> 3.0.24" # db backup
gem 'whenever' # cron scheduling
gem 'resque'
gem 'resque-scheduler', :require => 'resque_scheduler' # delayed jobs in resque
gem 'exception_notification'
gem 'json', '~> 1.7.3' # much faster than activerecord -- http://flori.github.com/json/
gem 'ancestry' # for threaded comments
gem 'carrierwave' # file/image attachments
gem 'rmagick' # image resizing
gem 'mime-types' # for assigning mime type on upload
gem 'fog' # S3 upload for carrierwave
gem 'cancan', '~> 1.6.8'
gem 'sunspot_rails' # for use with solr
gem 'sunspot_solr' # pre-packaged solr distro for use in dev
gem 'progress_bar' # shows solr indexing progress
gem 'bitmask_attributes'
gem 'paper_trail', '~> 2.6.3'
gem 'slope_one'
gem 'rails_autolink'
gem 'viddler-ruby'
gem 'vimeo'
gem "obfuscate_id", :git => 'git://github.com/geeosh/obfuscate_id.git'
gem 'twitter'
gem 'opentok', '~> 0.0.91' # tokbox gem
gem 'geoip'
#gem 'pusher'
#gem 'mechanize'
gem 'remotipart' # ajax file uploads
gem 'twilio-ruby'
group :test, :development do
# Pretty printed test output
gem 'turn', '0.8.2', :require => false
gem 'rspec'
gem 'rspec-rails', '2.10.1'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'capistrano'
gem 'rvm-capistrano'
gem 'timecop'
gem 'guard'
gem 'rb-fsevent' #, :require => false if RUBY_PLATFORM =~ /darwin/i
gem 'guard-rspec'
gem 'guard-livereload'
gem 'spork'
gem 'guard-spork'
gem 'debugger'
gem 'terminal-notifier-guard' # instead of growl for mountain lion notifications
#gem 'jasmine-rails' # also need to do: brew install qt
end
group :development do
gem "better_errors"
gem 'binding_of_caller'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'turbo-sprockets-rails3'
end
group :production do
gem 'thin'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'