-
Notifications
You must be signed in to change notification settings - Fork 12
/
Gemfile
118 lines (97 loc) · 2.62 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"
source 'http://gems.github.com'
ruby '1.9.3'
gem 'rails', '3.2.13'
gem 'rake', '0.9.2.2'
# Database and data related [Putting pg to the end because of a weird bug with Lion, pg and openssl]
gem 'pg'
gem 'foreigner'
gem 'activerecord-postgresql-adapter'
gem 'catarse_paypal_express', '~> 0.0.2'
gem 'catarse_moip', '~> 0.1.1'
gem 'moip_catarse', '~> 1.0.6', require: 'moip'
gem 'maxim-sexy_pg_constraints'
gem 'memcachier'
gem 'dalli', '~> 2.2.1'
gem 'draper', '0.17.0'
gem 'strong_parameters'
gem 'acts-as-taggable-on', '~> 3.4'
# Frontend stuff
gem 'jquery-rails', '2.0.2'
gem 'slim'
gem 'slim-rails'
# Authentication and Authorization
gem 'omniauth', "~> 1.1.0"
gem 'omniauth-openid', '~> 1.0.1'
gem 'omniauth-twitter', '~> 0.0.12'
gem 'omniauth-facebook', '~> 1.2.0'
gem 'devise', '1.5.3'
gem 'cancan'
# Email marketing
gem 'mailchimp'
# HTML manipulation and formatting
gem 'formtastic'
gem 'auto_html', git: 'https://github.com/lfzawacki/auto_html.git'
gem 'kaminari'
gem 'rails_autolink', '~> 1.0.7'
# Uploads
gem 'carrierwave', '= 0.5.8'
gem 'rmagick'
gem 'fog'
# Other Tools
gem 'feedzirra'
gem 'validation_reflection', git: 'git://github.com/ncri/validation_reflection.git'
gem 'inherited_resources', '1.5.0'
gem 'has_scope', '~> 0.6.0.rc'
gem 'spectator-validates_email', require: 'validates_email'
gem 'has_vimeo_video', git: 'https://github.com/lfzawacki/has_vimeo_video.git', branch: 'youtube-support'
gem 'wirble'
gem "on_the_spot"
gem 'weekdays'
gem 'brcep'
gem "RedCloth"
gem 'unicode'
gem 'enumerate_it'
gem 'httparty', '~> 0.6.1'
gem "rack-timeout"
gem 'tumblr-api'
# Translations
gem 'http_accept_language'
gem 'routing-filter' #, :git => 'git://github.com/svenfuchs/routing-filter.git'
# Administration
gem "meta_search", "1.1.3"
gem 'rails_admin'
# Payment
gem 'activemerchant', '1.17.0', require: 'active_merchant'
gem 'httpclient', '2.2.5'
gem 'selenium-webdriver', '~> 2.31.0'
gem 'bourbon'
gem 'paypal-express', :require => 'paypal'
# Server
gem 'thin'
gem 'exception_notification', '~> 4.0.0'
group :assets do
gem 'sass-rails', '~> 3.2.5'
gem 'coffee-rails', '~> 3.2.2'
gem "compass-rails", "~> 1.0.1"
gem 'uglifier', '>= 1.0.3'
gem 'compass-960-plugin', '~> 0.10.4'
gem 'select2-rails'
end
group :test, :development do
gem 'annotate'
gem 'launchy'
gem 'database_cleaner'
gem 'steak', "~> 1.1.0"
gem 'rspec-rails', "~> 2.13.0"
gem 'rcov', '= 0.9.11'
gem 'mocha', '0.13.3', :require => false
gem 'shoulda-matchers'
gem 'factory_girl_rails', '1.7.0'
gem 'capybara', ">= 2.0.3"
end
group :development do
gem 'mailcatcher'
gem 'ruby-debug19'
gem 'quiet_assets'
end