forked from diaspora/diaspora
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
225 lines (146 loc) · 4.6 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
source 'https://rubygems.org'
source 'https://rails-assets.org'
gem 'rails', '4.1.5'
# Legacy Rails features, remove me!
# caches_page
gem 'actionpack-action_caching'
gem 'actionpack-page_caching'
# Appserver
gem 'unicorn', '4.8.3', :require => false
# API and JSON
gem 'acts_as_api', '0.4.2'
gem 'json', '1.8.1'
# Authentication
gem 'devise', '3.3.0'
gem 'devise_lastseenable', '0.0.4'
# Captcha
gem 'simple_captcha2', '0.3.2', :require => 'simple_captcha'
# Background processing
gem 'sidekiq', '3.2.3'
gem 'sinatra', '1.3.3'
# Compression
gem 'uglifier', '2.5.3'
# Configuration
gem 'configurate', '0.0.8'
# Cross-origin resource sharing
gem 'rack-cors', '0.2.9', :require => 'rack/cors'
# CSS
gem 'bootstrap-sass', '2.3.2.2'
gem 'compass-rails', '2.0.0'
gem 'sass-rails', '4.0.3'
# Database
ENV['DB'] ||= 'mysql'
gem 'mysql2', '0.3.16' if ENV['DB'] == 'all' || ENV['DB'] == 'mysql'
gem 'pg', '0.17.1' if ENV['DB'] == 'all' || ENV['DB'] == 'postgres'
gem 'activerecord-import', '0.5.0'
gem 'foreigner', '1.6.1'
# File uploading
gem 'carrierwave', '0.10.0'
gem 'fog', '1.23.0'
gem 'mini_magick', '3.8.0'
gem 'remotipart', '1.2.1'
# GUID generation
gem 'uuid', '2.3.7'
# Icons
gem 'entypo-rails', '2.2.2'
# JavaScript
gem 'backbone-on-rails', '1.1.1'
gem 'handlebars_assets', '0.17.1'
gem 'jquery-rails', '3.1.1'
gem 'rails-assets-jquery', '1.11.1' # Should be kept in sync with jquery-rails
gem 'js_image_paths', '0.0.1'
# jQuery plugins
gem 'rails-assets-perfect-scrollbar', '0.4.11'
# Localization
gem 'http_accept_language', '2.0.2'
gem 'i18n-inflector-rails', '1.0.7'
gem 'rails-i18n', '4.0.2'
# Mail
gem 'markerb', '1.0.2'
gem 'messagebus_ruby_api', '1.0.3'
# Parsing
gem 'nokogiri', '1.6.1'
gem 'rails_autolink', '1.1.6'
gem 'redcarpet', '3.1.2'
gem 'roxml', '3.1.6'
gem 'ruby-oembed', '0.8.10'
gem 'opengraph_parser', '0.2.3'
# Services
gem 'omniauth', '1.2.2'
gem 'omniauth-facebook', '1.6.0'
gem 'omniauth-tumblr', '1.1'
gem 'omniauth-twitter', '1.0.1'
gem 'twitter', '4.8.1'
gem 'omniauth-wordpress','0.2.1'
# Tags
gem 'acts-as-taggable-on', '3.4.1'
# URIs and HTTP
gem 'addressable', '2.3.6', :require => 'addressable/uri'
gem 'faraday', '0.9.0'
gem 'faraday_middleware', '0.9.1'
gem 'typhoeus', '0.6.9'
# Views
gem 'gon', '5.2.0'
gem 'haml', '4.0.5'
gem 'mobile-fu', '1.3.1'
gem 'will_paginate', '3.0.7'
gem 'rails-timeago', '2.11.0'
# Workarounds
# https://github.com/rubyzip/rubyzip#important-note
gem 'zip-zip'
# Windows and OSX have an execjs compatible runtime built-in, Linux users should
# install Node.js or use 'therubyracer'.
#
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platform => :ruby
group :production do # we don't install these on travis to speed up test runs
# Administration
gem 'rails_admin', '0.6.3'
# Analytics
gem 'rack-google-analytics', '1.2.0'
gem 'rack-piwik', '0.3.0', :require => 'rack/piwik'
# Click-jacking protection
gem 'rack-protection', '1.2'
# Process management
gem 'foreman', '0.62'
# Redirects
gem 'rack-rewrite', '1.5.0', :require => false
gem 'rack-ssl', '1.4.1', :require => 'rack/ssl'
# Third party asset hosting
gem 'asset_sync', '1.1.0', :require => false
end
group :development do
# Automatic test runs
gem 'guard-cucumber', '1.4.1'
gem 'guard-rspec', '4.3.1'
gem 'rb-fsevent', '0.9.4', :require => false
gem 'rb-inotify', '0.9.5', :require => false
# Preloading environment
gem 'guard-spork', '1.5.1'
gem 'spork', '1.0.0rc4'
end
group :test do
# RSpec (unit tests, some integration tests)
gem 'fixture_builder', '0.3.6'
gem 'fuubar', '2.0.0'
gem 'rspec-instafail', '0.2.5', :require => false
gem 'test_after_commit', '0.2.5'
# Cucumber (integration tests)
gem 'capybara', '2.4.1'
gem 'database_cleaner', '1.3.0'
gem 'selenium-webdriver', '2.42.0'
# General helpers
gem 'factory_girl_rails', '4.4.1'
gem 'timecop', '0.7.1'
gem 'webmock', '1.18.0', :require => false
end
group :development, :test do
# RSpec (unit tests, some integration tests)
gem 'rspec-rails', '3.0.2'
# Cucumber (integration tests)
gem 'cucumber-rails', '1.4.1', :require => false
# Jasmine (client side application tests (JS))
gem 'jasmine', '2.0.2'
gem 'jasmine-jquery-rails', '2.0.3'
gem 'sinon-rails', '1.10.3'
end