BigW Consortium Gitlab

Gemfile 8.55 KB
Newer Older
1
source 'https://rubygems.org'
gitlabhq committed
2

3
gem 'rails', '4.2.8'
4
gem 'rails-deprecated_sanitizer', '~> 1.0.3'
Valery Sizov committed
5 6 7

# Responders respond_to and respond_with
gem 'responders', '~> 2.0'
8

ubudzisz committed
9
gem 'sprockets', '~> 3.7.0'
10

Dmitriy Zaporozhets committed
11
# Default values for AR models
12
gem 'default_value_for', '~> 3.0.0'
Dmitriy Zaporozhets committed
13

14
# Supported DBs
15 16
gem 'mysql2', '~> 0.3.16', group: :mysql
gem 'pg', '~> 0.18.2', group: :postgres
17

18
gem 'rugged', '~> 0.25.1.1'
Robert Speicher committed
19

20 21
gem 'faraday', '~> 0.11.0'

karen Carias committed
22
# Authentication libraries
23 24
gem 'devise', '~> 4.2'
gem 'doorkeeper', '~> 4.2.0'
25
gem 'doorkeeper-openid_connect', '~> 1.1.0'
26 27 28 29 30 31 32
gem 'omniauth', '~> 1.4.2'
gem 'omniauth-auth0', '~> 1.4.1'
gem 'omniauth-azure-oauth2', '~> 0.0.6'
gem 'omniauth-cas3', '~> 1.1.2'
gem 'omniauth-facebook', '~> 4.0.0'
gem 'omniauth-github', '~> 1.1.1'
gem 'omniauth-gitlab', '~> 1.0.2'
33
gem 'omniauth-google-oauth2', '~> 0.4.1'
34
gem 'omniauth-kerberos', '~> 0.3.0', group: :kerberos
35
gem 'omniauth-oauth2-generic', '~> 0.2.2'
36 37 38 39 40 41 42
gem 'omniauth-saml', '~> 1.7.0'
gem 'omniauth-shibboleth', '~> 1.2.0'
gem 'omniauth-twitter', '~> 1.2.0'
gem 'omniauth_crowd', '~> 2.2.0'
gem 'omniauth-authentiq', '~> 0.3.0'
gem 'rack-oauth2', '~> 1.2.1'
gem 'jwt', '~> 1.5.6'
43

44
# Spam and anti-bot protection
45
gem 'recaptcha', '~> 3.0', require: 'recaptcha/rails'
46
gem 'akismet', '~> 2.0'
47

48
# Two-factor authentication
49
gem 'devise-two-factor', '~> 3.0.0'
50
gem 'rqrcode-rails3', '~> 0.1.7'
51
gem 'attr_encrypted', '~> 3.0.0'
52
gem 'u2f', '~> 0.2.1'
53

54
# GitLab Pages
55
gem 'validates_hostname', '~> 1.0.6'
56

57
# Browser detection
58
gem 'browser', '~> 2.2'
59

60
# LDAP Auth
61
# GitLab fork with several improvements to original library. For full list of changes
62
# see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master
63
gem 'gitlab_omniauth-ldap', '~> 1.2.1', require: 'omniauth-ldap'
64

65
# Git Wiki
66
# Required manually in config/initializers/gollum.rb to control load order
67
gem 'gollum-lib', '~> 4.2', require: false
68
gem 'gollum-rugged_adapter', '~> 0.4.4', require: false
69

70
# Language detection
71
gem 'github-linguist', '~> 4.7.0', require: 'linguist'
72

randx committed
73
# API
74
gem 'grape', '~> 0.19.0'
75
gem 'grape-entity', '~> 0.6.0'
76
gem 'rack-cors', '~> 0.4.0', require: 'rack/cors'
randx committed
77

78 79 80
# Disable strong_params so that Mash does not respond to :permitted?
gem 'hashie-forbidden_attributes'

randx committed
81
# Pagination
82
gem 'kaminari', '~> 0.17.0'
randx committed
83 84

# HAML
85
gem 'hamlit', '~> 2.6.1'
randx committed
86 87

# Files attachments
88
gem 'carrierwave', '~> 1.0'
89

90
# Drag and Drop UI
91
gem 'dropzonejs-rails', '~> 0.7.1'
92

93 94
# for backups
gem 'fog-aws', '~> 0.9'
95
gem 'fog-core', '~> 1.44'
96
gem 'fog-google', '~> 0.5'
97 98
gem 'fog-local', '~> 0.3'
gem 'fog-openstack', '~> 0.1'
99
gem 'fog-rackspace', '~> 0.1.1'
100

101 102 103
# for Google storage
gem 'google-api-client', '~> 0.8.6'

104
# for aws storage
105
gem 'unf', '~> 0.1.4'
randx committed
106 107

# Seed data
108
gem 'seed-fu', '~> 2.3.5'
randx committed
109

Robert Speicher committed
110
# Markdown and HTML processing
111 112 113 114 115 116 117 118 119 120
gem 'html-pipeline', '~> 1.11.0'
gem 'deckar01-task_list', '1.0.6', require: 'task_list/railtie'
gem 'gitlab-markup', '~> 1.5.1'
gem 'redcarpet', '~> 3.4'
gem 'RedCloth', '~> 4.3.2'
gem 'rdoc', '~> 4.2'
gem 'org-ruby', '~> 0.9.12'
gem 'creole', '~> 0.5.0'
gem 'wikicloth', '0.8.1'
gem 'asciidoctor', '~> 1.5.2'
121
gem 'asciidoctor-plantuml', '0.0.7'
122 123
gem 'rouge', '~> 2.0'
gem 'truncato', '~> 0.7.8'
randx committed
124

125
# See https://groups.google.com/forum/#!topic/ruby-security-ann/aSbgDiwb24s
126
# and https://groups.google.com/forum/#!topic/ruby-security-ann/Dy7YiKb_pMM
127
gem 'nokogiri', '~> 1.6.7', '>= 1.6.7.2'
128

skv-headless committed
129
# Diffs
130
gem 'diffy', '~> 3.1.0'
skv-headless committed
131

132
# Application server
133
group :unicorn do
134 135
  gem 'unicorn', '~> 5.1.0'
  gem 'unicorn-worker-killer', '~> 0.4.4'
136
end
randx committed
137

Andrew8xx8 committed
138
# State machine
139
gem 'state_machines-activerecord', '~> 0.4.0'
140
# Run events after state machine commits
bogdanvlviv committed
141
gem 'after_commit_queue', '~> 1.3.0'
Andrew8xx8 committed
142

randx committed
143
# Issue tags
144
gem 'acts-as-taggable-on', '~> 4.0'
randx committed
145 146

# Background jobs
Douwe Maan committed
147
gem 'sidekiq', '~> 5.0'
148
gem 'sidekiq-cron', '~> 0.6.0'
bogdanvlviv committed
149
gem 'redis-namespace', '~> 1.5.2'
150
gem 'sidekiq-limit_fetch', '~> 3.4'
randx committed
151

152
# Cron Parser
153
gem 'rufus-scheduler', '~> 3.4'
154

randx committed
155
# HTTP requests
156
gem 'httparty', '~> 0.13.3'
randx committed
157 158

# Colored output to console
159
gem 'rainbow', '~> 2.1.0'
randx committed
160

Riyad Preukschas committed
161
# GitLab settings
162
gem 'settingslogic', '~> 2.0.9'
163

randx committed
164
# Misc
165

166
gem 'version_sorter', '~> 2.1.0'
randx committed
167

168
# Cache
169
gem 'redis-rails', '~> 5.0.1'
170

171 172 173 174
# Redis
gem 'redis', '~> 3.2'
gem 'connection_pool', '~> 2.0'

175
# HipChat integration
Chulki Lee committed
176
gem 'hipchat', '~> 1.5.0'
177

178
# JIRA integration
179
gem 'jira-ruby', '~> 1.1.2'
180

181
# Flowdock integration
182
gem 'gitlab-flowdock-git-hook', '~> 1.0.1'
183

184
# Gemnasium integration
185
gem 'gemnasium-gitlab-service', '~> 0.2'
186

187
# Slack integration
188
gem 'slack-notifier', '~> 1.5.1'
189

Jeremy committed
190
# Asana integration
191
gem 'asana', '~> 0.6.0'
Jeremy committed
192

Jared Szechy committed
193
# FogBugz integration
Jared Szechy committed
194
gem 'ruby-fogbugz', '~> 0.2.1'
Jared Szechy committed
195

196 197 198
# Kubernetes integration
gem 'kubeclient', '~> 2.2.0'

199
# d3
200
gem 'd3_rails', '~> 3.5.0'
201 202

# underscore-rails
203
gem 'underscore-rails', '~> 1.8.0'
204

205
# Sanitize user input
206
gem 'sanitize', '~> 2.0'
207
gem 'babosa', '~> 1.0.2'
208

Stan Hu committed
209
# Sanitizes SVG input
210
gem 'loofah', '~> 2.0.3'
Stan Hu committed
211

212
# Working with license
213
gem 'licensee', '~> 8.7.0'
214

Marin Jankovski committed
215
# Protect against bruteforcing
216
gem 'rack-attack', '~> 4.4.1'
Marin Jankovski committed
217

218
# Ace editor
219
gem 'ace-rails-ap', '~> 4.1.0'
220

221
# Keyboard shortcuts
222
gem 'mousetrap-rails', '~> 1.4.6'
223

224
# Detect and convert string character encoding
225
gem 'charlock_holmes', '~> 0.7.3'
226

227 228 229
# Faster JSON
gem 'oj', '~> 2.17.4'

230 231
# Parse time & duration
gem 'chronic', '~> 0.10.2'
232 233
gem 'chronic_duration', '~> 0.10.6'

234
gem 'webpack-rails', '~> 0.9.10'
235 236
gem 'rack-proxy', '~> 0.6.0'

237
gem 'sass-rails', '~> 5.0.6'
238 239
gem 'coffee-rails', '~> 4.1.0'
gem 'uglifier', '~> 2.7.2'
240

241 242
gem 'addressable', '~> 2.3.8'
gem 'bootstrap-sass', '~> 3.3.0'
243
gem 'font-awesome-rails', '~> 4.7'
244 245
gem 'gemojione', '~> 3.0'
gem 'gon', '~> 6.1.0'
246
gem 'jquery-atwho-rails', '~> 1.3.2'
247 248 249 250 251 252
gem 'jquery-rails', '~> 4.1.0'
gem 'request_store', '~> 1.3'
gem 'select2-rails', '~> 3.5.9'
gem 'virtus', '~> 1.0.1'
gem 'net-ssh', '~> 3.0.1'
gem 'base32', '~> 0.3.0'
gitlabhq committed
253

254
# Sentry integration
255
gem 'sentry-raven', '~> 2.4.0'
256

257 258
gem 'premailer-rails', '~> 1.9.0'

Ruben Davila committed
259
# I18n
260
gem 'ruby_parser', '~> 3.8.4', require: false
Ruben Davila committed
261
gem 'gettext_i18n_rails', '~> 1.8.0'
262
gem 'gettext_i18n_rails_js', '~> 1.2.0'
Ruben Davila committed
263 264
gem 'gettext', '~> 3.2.2', require: false, group: :development

265 266
# Metrics
group :metrics do
267
  gem 'allocations', '~> 1.0', require: false, platform: :mri
268
  gem 'method_source', '~> 0.8', require: false
269 270 271
  gem 'influxdb', '~> 0.2', require: false
end

Nihad Abbasov committed
272
group :development do
bogdanvlviv committed
273
  gem 'foreman', '~> 0.78.0'
274
  gem 'brakeman', '~> 3.6.0', require: false
275

276
  gem 'letter_opener_web', '~> 1.3.0'
bogdanvlviv committed
277
  gem 'rblineprof', '~> 0.3.6', platform: :mri, require: false
278

279
  # Better errors handler
280
  gem 'better_errors', '~> 2.1.0'
281
  gem 'binding_of_caller', '~> 0.7.2'
282

283
  # thin instead webrick
284
  gem 'thin', '~> 1.7.0'
gitlabhq committed
285 286 287
end

group :development, :test do
288
  gem 'bullet', '~> 5.5.0', require: !!ENV['ENABLE_BULLET']
289
  gem 'pry-byebug', '~> 3.4.1', platform: :mri
bogdanvlviv committed
290
  gem 'pry-rails', '~> 0.3.4'
Robert Speicher committed
291

292
  gem 'awesome_print', '~> 1.2.0', require: false
293 294
  gem 'fuubar', '~> 2.0.0'

295
  gem 'database_cleaner', '~> 1.5.0'
296
  gem 'factory_girl_rails', '~> 4.7.0'
297 298 299
  gem 'rspec-rails', '~> 3.5.0'
  gem 'rspec-retry', '~> 0.4.5'
  gem 'spinach-rails', '~> 0.2.1'
Kamil Trzcinski committed
300
  gem 'spinach-rerun-reporter', '~> 0.0.2'
301
  gem 'rspec_profiling', '~> 0.0.5'
302
  gem 'rspec-set', '~> 0.1.3'
randx committed
303

304
  # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
305
  gem 'minitest', '~> 5.7.0'
306

307
  # Generate Fake data
308
  gem 'ffaker', '~> 2.4'
309

310
  gem 'capybara', '~> 2.6.2'
Robert Speicher committed
311
  gem 'capybara-screenshot', '~> 1.0.0'
312
  gem 'poltergeist', '~> 1.9.0'
Andrew8xx8 committed
313

314
  gem 'spring', '~> 2.0.0'
315 316
  gem 'spring-commands-rspec', '~> 1.0.4'
  gem 'spring-commands-spinach', '~> 1.1.0'
317

318
  gem 'rubocop', '~> 0.47.1', require: false
319
  gem 'rubocop-rspec', '~> 1.15.0', require: false
320
  gem 'scss_lint', '~> 0.47.0', require: false
321
  gem 'haml_lint', '~> 0.21.0', require: false
322
  gem 'simplecov', '~> 0.14.0', require: false
323
  gem 'flay', '~> 2.8.0', require: false
bogdanvlviv committed
324
  gem 'bundler-audit', '~> 0.5.0', require: false
325

bogdanvlviv committed
326
  gem 'benchmark-ips', '~> 2.3.0', require: false
Connor Shea committed
327

bogdanvlviv committed
328 329
  gem 'license_finder', '~> 2.1.0', require: false
  gem 'knapsack', '~> 1.11.0'
330 331

  gem 'activerecord_sane_schema_dumper', '0.2'
332 333

  gem 'stackprof', '~> 0.2.10'
gitlabhq committed
334 335 336
end

group :test do
337
  gem 'shoulda-matchers', '~> 2.8.0', require: false
338
  gem 'email_spec', '~> 1.6.0'
339
  gem 'json-schema', '~> 2.6.2'
340
  gem 'webmock', '~> 1.24.0'
341
  gem 'test_after_commit', '~> 1.1'
bogdanvlviv committed
342
  gem 'sham_rack', '~> 1.3.6'
343
  gem 'timecop', '~> 0.8.0'
344
  gem 'concurrent-ruby', '~> 1.0.5'
gitlabhq committed
345
end
346

347
gem 'octokit', '~> 4.6.2'
Douwe Maan committed
348

349
gem 'mail_room', '~> 0.9.1'
Douwe Maan committed
350

351
gem 'email_reply_trimmer', '~> 0.1'
352
gem 'html2text'
353

354
gem 'ruby-prof', '~> 0.16.2'
355

356
# OAuth
357
gem 'oauth2', '~> 1.3.0'
358 359

# Soft deletion
360
gem 'paranoia', '~> 2.2'
361 362

# Health check
363
gem 'health_check', '~> 2.6.0'
364 365

# System information
366
gem 'vmstat', '~> 2.3.0'
367
gem 'sys-filesystem', '~> 1.1.6'
368 369

# Gitaly GRPC client
370
gem 'gitaly', '~> 0.7.0'
371 372

gem 'toml-rb', '~> 0.3.15', require: false