-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
71 lines (60 loc) · 1.86 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
source 'https://rubygems.org'
gem 'newrelic_rpm'
gem 'rails', '3.2.13'
gem 'mysql2', '~> 0.3.11'
gem 'guid', '~> 0.1.1'
gem 'hiredis', '~> 0.4.5'
gem 'redis', '~> 3.0.6'
gem 'yajl-ruby', :require => 'yajl'
gem 'carrierwave', '~> 0.5.7'
gem 'mini_magick', '~> 3.6'
gem 'pHash', '~> 1.1.5', :require => 'phash/image'
gem 'fog', '~> 1.22.0'
gem 'unf', '~> 0.1.3'
gem 'gibbon', '~> 0.3.5'
gem 'nokogiri', '~> 1.5.5'
gem 'httparty', '~> 0.8.3'
gem 'quiet_assets', :group => 'development'
# TODO: Are we using this?
gem 'activemerchant', '~> 1.28.0'
# Facebook Graph API support
gem "koala", "~> 1.5.0"
# Plugins
gem 'omniauth', '~> 1.1.0'
gem 'omniauth-facebook', '~> 1.4.1'
gem 'omniauth-twitter', '~> 0.0.12'
gem 'will_paginate', '~> 3.0.2'
gem 'acts-as-taggable-on', '~> 2.3.3'
gem 'acts_as_list', '~> 0.1.8'
gem 'acts_as_tree', '~> 1.1.0'
gem 'dynamic_form', '~> 1.1.4'
gem 'simple_form', '~> 2.1.0'
gem 'recaptcha', :require => 'recaptcha/rails'
# Yay, jQuery!
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Asynchronous job processing
gem 'sidekiq', '~> 2.17.0'
gem 'validates_timeliness', '~> 3.0.14'
gem 'validate_as_email', '~> 1.0.3'
gem 'state_machine', '~> 1.1.2'
# I applied a couple manual fixes to be able to use the official release of
# authlogic rather than an unknown and less-maintained fork.
# gem "authlogic", :git => "git://github.com/odorcicd/authlogic.git", :branch => "rails3"
# gem 'authlogic', '2.1.6'
gem 'authlogic', '~> 3.1.2'
# Use unicorn as the web server
gem 'unicorn', '~> 4.3.1'
gem 'unicorn-worker-killer'
group :assets do
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'sprockets'
gem 'therubyracer'
# gem 'sass-rails', '~> 3.2.6'
gem 'less-rails', '~> 2.3.2'
# gem 'coffee-rails', '~> 3.2.2'
gem 'uglifier', '~> 1.3.0'
gem 'twitter-bootstrap-rails', '~> 2.2.7'
gem 'modernizr-rails'
gem 'fancybox2-rails'
end