BigW Consortium Gitlab

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

3
gem 'rails', '4.2.7.1'
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

9 10
# Specify a sprockets version due to increased performance
# See https://gitlab.com/gitlab-org/gitlab-ce/issues/6069
11
gem 'sprockets', '~> 3.6.0'
Jacob Schatz committed
12
gem 'sprockets-es6'
13

Dmitriy Zaporozhets committed
14
# Default values for AR models
15
gem 'default_value_for', '~> 3.0.0'
Dmitriy Zaporozhets committed
16

17
# Supported DBs
18 19
gem 'mysql2', '~> 0.3.16', group: :mysql
gem 'pg', '~> 0.18.2', group: :postgres
20

karen Carias committed
21
# Authentication libraries
22
gem 'devise',                 '~> 4.0'
23
gem 'doorkeeper',             '~> 4.2.0'
24
gem 'omniauth',               '~> 1.3.1'
25
gem 'omniauth-auth0',         '~> 1.4.1'
26
gem 'omniauth-azure-oauth2',  '~> 0.0.6'
27
gem 'omniauth-bitbucket',     '~> 0.0.2'
28
gem 'omniauth-cas3',          '~> 1.1.2'
29
gem 'omniauth-facebook',      '~> 3.0.0'
30 31
gem 'omniauth-github',        '~> 1.1.1'
gem 'omniauth-gitlab',        '~> 1.0.0'
32
gem 'omniauth-google-oauth2', '~> 0.4.1'
33
gem 'omniauth-kerberos',      '~> 0.3.0', group: :kerberos
34
gem 'omniauth-saml',          '~> 1.6.0'
35
gem 'omniauth-shibboleth',    '~> 1.2.0'
36
gem 'omniauth-twitter',       '~> 1.2.0'
37
gem 'omniauth_crowd',         '~> 2.2.0'
38
gem 'rack-oauth2',            '~> 1.2.1'
39
gem 'jwt'
40

41
# Spam and anti-bot protection
42
gem 'recaptcha', '~> 3.0', require: 'recaptcha/rails'
43
gem 'akismet', '~> 2.0'
44

45
# Two-factor authentication
46
gem 'devise-two-factor', '~> 3.0.0'
47
gem 'rqrcode-rails3', '~> 0.1.7'
48
gem 'attr_encrypted', '~> 3.0.0'
49
gem 'u2f', '~> 0.2.1'
50

51
# Browser detection
52
gem 'browser', '~> 2.2'
53

54
# Extracting information from a git repository
55
# Provide access to Gitlab::Git library
56
gem 'gitlab_git', '~> 10.6.3'
57

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

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

68
# Language detection
69
gem 'github-linguist', '~> 4.7.0', require: 'linguist'
70

randx committed
71
# API
72
gem 'grape',        '~> 0.15.0'
73 74
gem 'grape-entity', '~> 0.4.2'
gem 'rack-cors',    '~> 0.4.0', require: 'rack/cors'
randx committed
75 76

# Pagination
77
gem 'kaminari', '~> 0.17.0'
randx committed
78 79

# HAML
80
gem 'hamlit', '~> 2.6.1'
randx committed
81 82

# Files attachments
83
gem 'carrierwave', '~> 0.10.0'
84

85
# Drag and Drop UI
86
gem 'dropzonejs-rails', '~> 0.7.1'
87

88 89
# for backups
gem 'fog-aws', '~> 0.9'
90
gem 'fog-azure', '~> 0.0'
91 92 93 94
gem 'fog-core', '~> 1.40'
gem 'fog-local', '~> 0.3'
gem 'fog-google', '~> 0.3'
gem 'fog-openstack', '~> 0.1'
95
gem 'fog-rackspace', '~> 0.1.1'
96

97
# for aws storage
98
gem 'unf', '~> 0.1.4'
randx committed
99 100

# Seed data
101
gem 'seed-fu', '~> 2.3.5'
randx committed
102

Robert Speicher committed
103
# Markdown and HTML processing
104
gem 'html-pipeline', '~> 1.11.0'
105
gem 'task_list',     '~> 1.0.2', require: 'task_list/railtie'
106
gem 'github-markup', '~> 1.4'
107
gem 'redcarpet',     '~> 3.3.3'
108
gem 'RedCloth',      '~> 4.3.2'
Robert Speicher committed
109
gem 'rdoc',          '~>3.6'
110
gem 'org-ruby',      '~> 0.9.12'
111
gem 'creole',        '~> 0.5.0'
Valery Sizov committed
112
gem 'wikicloth',     '0.8.1'
113
gem 'asciidoctor',   '~> 1.5.2'
114
gem 'rouge',         '~> 2.0'
randx committed
115

116
# See https://groups.google.com/forum/#!topic/ruby-security-ann/aSbgDiwb24s
117
# and https://groups.google.com/forum/#!topic/ruby-security-ann/Dy7YiKb_pMM
118
gem 'nokogiri', '~> 1.6.7', '>= 1.6.7.2'
119

skv-headless committed
120 121 122
# Diffs
gem 'diffy', '~> 3.0.3'

123
# Application server
124
group :unicorn do
125
  gem 'unicorn', '~> 4.9.0'
126
  gem 'unicorn-worker-killer', '~> 0.4.2'
127
end
randx committed
128

Andrew8xx8 committed
129
# State machine
130
gem 'state_machines-activerecord', '~> 0.4.0'
131
# Run events after state machine commits
bogdanvlviv committed
132
gem 'after_commit_queue', '~> 1.3.0'
Andrew8xx8 committed
133

randx committed
134
# Issue tags
135
gem 'acts-as-taggable-on', '~> 3.4'
randx committed
136 137

# Background jobs
138
gem 'sinatra', '~> 1.4.4', require: false
139 140
gem 'sidekiq', '~> 4.0'
gem 'sidekiq-cron', '~> 0.4.0'
bogdanvlviv committed
141
gem 'redis-namespace', '~> 1.5.2'
randx committed
142 143

# HTTP requests
144
gem 'httparty', '~> 0.13.3'
randx committed
145 146

# Colored output to console
147
gem 'rainbow', '~> 2.1.0'
randx committed
148

Riyad Preukschas committed
149
# GitLab settings
150
gem 'settingslogic', '~> 2.0.9'
151

randx committed
152
# Misc
153

154
gem 'version_sorter', '~> 2.1.0'
randx committed
155

156
# Cache
157
gem 'redis-rails', '~> 4.0.0'
158

159 160 161 162
# Redis
gem 'redis', '~> 3.2'
gem 'connection_pool', '~> 2.0'

163
# HipChat integration
Chulki Lee committed
164
gem 'hipchat', '~> 1.5.0'
165

166
# Flowdock integration
167
gem 'gitlab-flowdock-git-hook', '~> 1.0.1'
168

169
# Gemnasium integration
170
gem 'gemnasium-gitlab-service', '~> 0.2'
171

172
# Slack integration
173
gem 'slack-notifier', '~> 1.2.0'
174

Jeremy committed
175
# Asana integration
176
gem 'asana', '~> 0.4.0'
Jeremy committed
177

Jared Szechy committed
178
# FogBugz integration
Jared Szechy committed
179
gem 'ruby-fogbugz', '~> 0.2.1'
Jared Szechy committed
180

181
# d3
182
gem 'd3_rails', '~> 3.5.0'
183 184

# underscore-rails
185
gem 'underscore-rails', '~> 1.8.0'
186

187
# Sanitize user input
188
gem 'sanitize', '~> 2.0'
189
gem 'babosa', '~> 1.0.2'
190

Stan Hu committed
191
# Sanitizes SVG input
192
gem 'loofah', '~> 2.0.3'
Stan Hu committed
193

194
# Working with license
195
gem 'licensee', '~> 8.0.0'
196

Marin Jankovski committed
197
# Protect against bruteforcing
198
gem 'rack-attack', '~> 4.3.1'
Marin Jankovski committed
199

200
# Ace editor
201
gem 'ace-rails-ap', '~> 4.1.0'
202

203
# Keyboard shortcuts
204
gem 'mousetrap-rails', '~> 1.4.6'
205

206
# Detect and convert string character encoding
207
gem 'charlock_holmes', '~> 0.7.3'
208

209 210
# Parse time & duration
gem 'chronic', '~> 0.10.2'
211 212
gem 'chronic_duration', '~> 0.10.6'

213 214 215
gem 'sass-rails', '~> 5.0.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'uglifier', '~> 2.7.2'
216
gem 'turbolinks', '~> 2.5.0'
217
gem 'jquery-turbolinks', '~> 2.1.0'
218

219
gem 'addressable',        '~> 2.3.8'
220
gem 'bootstrap-sass',     '~> 3.3.0'
221
gem 'font-awesome-rails', '~> 4.6.1'
222
gem 'gemojione',          '~> 3.0'
223
gem 'gon',                '~> 6.1.0'
224
gem 'jquery-atwho-rails', '~> 1.3.2'
225
gem 'jquery-rails',       '~> 4.1.0'
226
gem 'jquery-ui-rails',    '~> 5.0.0'
227
gem 'request_store',      '~> 1.3.0'
228
gem 'select2-rails',      '~> 3.5.9'
229
gem 'virtus',             '~> 1.0.1'
230
gem 'net-ssh',            '~> 3.0.1'
Kamil Trzcinski committed
231
gem 'base32',             '~> 0.3.0'
gitlabhq committed
232

233
# Sentry integration
234
gem 'sentry-raven', '~> 1.1.0'
235

236 237
gem 'premailer-rails', '~> 1.9.0'

238 239
# Metrics
group :metrics do
240
  gem 'allocations', '~> 1.0', require: false, platform: :mri
241
  gem 'method_source', '~> 0.8', require: false
242 243 244
  gem 'influxdb', '~> 0.2', require: false
end

Nihad Abbasov committed
245
group :development do
bogdanvlviv committed
246
  gem 'foreman', '~> 0.78.0'
247
  gem 'brakeman', '~> 3.3.0', require: false
248

249
  gem 'letter_opener_web', '~> 1.3.0'
250
  gem 'rerun', '~> 0.11.0'
251
  gem 'bullet', '~> 5.2.0', require: false
bogdanvlviv committed
252
  gem 'rblineprof', '~> 0.3.6', platform: :mri, require: false
Valery Sizov committed
253
  gem 'web-console', '~> 2.0'
254

255
  # Better errors handler
256 257
  gem 'better_errors', '~> 1.0.1'
  gem 'binding_of_caller', '~> 0.7.2'
258 259

  # Docs generator
260
  gem 'sdoc', '~> 0.3.20'
261 262

  # thin instead webrick
263
  gem 'thin', '~> 1.7.0'
gitlabhq committed
264 265 266
end

group :development, :test do
bogdanvlviv committed
267 268
  gem 'byebug', '~> 8.2.1', platform: :mri
  gem 'pry-rails', '~> 0.3.4'
Robert Speicher committed
269

270
  gem 'awesome_print', '~> 1.2.0', require: false
271 272
  gem 'fuubar', '~> 2.0.0'

273
  gem 'database_cleaner',   '~> 1.5.0'
274
  gem 'factory_girl_rails', '~> 4.6.0'
275
  gem 'rspec-rails',        '~> 3.5.0'
bogdanvlviv committed
276
  gem 'rspec-retry',        '~> 0.4.5'
277
  gem 'spinach-rails',      '~> 0.2.1'
Kamil Trzcinski committed
278
  gem 'spinach-rerun-reporter', '~> 0.0.2'
randx committed
279

280
  # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
281
  gem 'minitest', '~> 5.7.0'
282

283
  # Generate Fake data
Robert Speicher committed
284
  gem 'ffaker', '~> 2.0.0'
285

Stan Hu committed
286
  gem 'capybara',            '~> 2.6.2'
Robert Speicher committed
287
  gem 'capybara-screenshot', '~> 1.0.0'
288
  gem 'poltergeist',         '~> 1.9.0'
Andrew8xx8 committed
289

290
  gem 'teaspoon', '~> 1.1.0'
291
  gem 'teaspoon-jasmine', '~> 2.2.0'
292

293
  gem 'spring',                   '~> 1.7.0'
294
  gem 'spring-commands-rspec',    '~> 1.0.4'
295
  gem 'spring-commands-spinach',  '~> 1.1.0'
296
  gem 'spring-commands-teaspoon', '~> 0.0.2'
297

Connor Shea committed
298
  gem 'rubocop', '~> 0.41.2', require: false
Robert Speicher committed
299
  gem 'rubocop-rspec', '~> 1.5.0', require: false
300
  gem 'scss_lint', '~> 0.47.0', require: false
301
  gem 'haml_lint', '~> 0.18.2', require: false
302
  gem 'simplecov', '0.12.0', require: false
bogdanvlviv committed
303 304 305
  gem 'flog', '~> 4.3.2', require: false
  gem 'flay', '~> 2.6.1', require: false
  gem 'bundler-audit', '~> 0.5.0', require: false
306

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

bogdanvlviv committed
309 310
  gem 'license_finder', '~> 2.1.0', require: false
  gem 'knapsack', '~> 1.11.0'
gitlabhq committed
311 312 313
end

group :test do
314
  gem 'shoulda-matchers', '~> 2.8.0', require: false
315
  gem 'email_spec', '~> 1.6.0'
316
  gem 'json-schema', '~> 2.6.2'
317
  gem 'webmock', '~> 1.21.0'
318
  gem 'test_after_commit', '~> 0.4.2'
bogdanvlviv committed
319
  gem 'sham_rack', '~> 1.3.6'
gitlabhq committed
320
end
321 322

group :production do
323
  gem 'gitlab_meta', '7.0'
324
end
325

326
gem 'newrelic_rpm', '~> 3.16'
327

328
gem 'octokit', '~> 4.3.0'
Douwe Maan committed
329

330
gem 'mail_room', '~> 0.8'
Douwe Maan committed
331

332 333
gem 'email_reply_parser', '~> 0.5.8'

334 335
gem 'ruby-prof', '~> 0.15.9'

336
## CI
337
gem 'activerecord-session_store', '~> 1.0.0'
338
gem 'nested_form', '~> 0.3.2'
339 340

# OAuth
341
gem 'oauth2', '~> 1.2.0'
342 343

# Soft deletion
344
gem 'paranoia', '~> 2.0'
345 346

# Health check
347
gem 'health_check', '~> 2.1.0'
348 349

# System information
350
gem 'vmstat', '~> 2.2'
351
gem 'sys-filesystem', '~> 1.1.6'