Gemfile 8.3 KB
Newer Older
S
Sytse Sijbrandij 已提交
1
source "https://rubygems.org"
G
gitlabhq 已提交
2

R
Robert Speicher 已提交
3
gem 'rails', '4.2.6'
V
Valery Sizov 已提交
4
gem 'rails-deprecated_sanitizer', '~> 1.0.3'
V
Valery Sizov 已提交
5 6 7

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

R
Robert Speicher 已提交
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'
12

D
Dmitriy Zaporozhets 已提交
13 14 15
# Default values for AR models
gem "default_value_for", "~> 3.0.0"

D
Dmitriy Zaporozhets 已提交
16
# Supported DBs
D
Douwe Maan 已提交
17 18
gem "mysql2", '~> 0.3.16', group: :mysql
gem "pg", '~> 0.18.2', group: :postgres
D
Dmitriy Zaporozhets 已提交
19

K
karen Carias 已提交
20
# Authentication libraries
21
gem 'devise',                 '~> 4.0'
22
gem 'doorkeeper',             '~> 3.1'
23
gem 'omniauth',               '~> 1.3.1'
24
gem 'omniauth-auth0',         '~> 1.4.1'
25
gem 'omniauth-azure-oauth2',  '~> 0.0.6'
26
gem 'omniauth-bitbucket',     '~> 0.0.2'
T
tduehr 已提交
27
gem 'omniauth-cas3',          '~> 1.1.2'
D
Douwe Maan 已提交
28
gem 'omniauth-facebook',      '~> 3.0.0'
29 30
gem 'omniauth-github',        '~> 1.1.1'
gem 'omniauth-gitlab',        '~> 1.0.0'
31
gem 'omniauth-google-oauth2', '~> 0.2.0'
32
gem 'omniauth-kerberos',      '~> 0.3.0', group: :kerberos
33
gem 'omniauth-saml',          '~> 1.6.0'
34
gem 'omniauth-shibboleth',    '~> 1.2.0'
35
gem 'omniauth-twitter',       '~> 1.2.0'
36
gem 'omniauth_crowd',         '~> 2.2.0'
R
Robert Speicher 已提交
37
gem 'rack-oauth2',            '~> 1.2.1'
38
gem 'jwt'
D
Dmitriy Zaporozhets 已提交
39

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

44
# Two-factor authentication
45
gem 'devise-two-factor', '~> 3.0.0'
D
Douwe Maan 已提交
46
gem 'rqrcode-rails3', '~> 0.1.7'
47
gem 'attr_encrypted', '~> 3.0.0'
48
gem 'u2f', '~> 0.2.1'
49

50
# Browser detection
S
Stan Hu 已提交
51
gem "browser", '~> 2.2'
52

D
Dmitriy Zaporozhets 已提交
53
# Extracting information from a git repository
D
Dmitriy Zaporozhets 已提交
54
# Provide access to Gitlab::Git library
S
Stan Hu 已提交
55
gem "gitlab_git", '~> 10.2'
56

57
# LDAP Auth
Y
Yorick Peterse 已提交
58
# GitLab fork with several improvements to original library. For full list of changes
59
# see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master
D
Douwe Maan 已提交
60
gem 'gitlab_omniauth-ldap', '~> 1.2.1', require: "omniauth-ldap"
61

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

V
Valeriy Sizov 已提交
67
# Language detection
68
gem "github-linguist", "~> 4.7.0", require: "linguist"
V
Valeriy Sizov 已提交
69

R
randx 已提交
70
# API
K
Kamil Trzcinski 已提交
71
gem 'grape',        '~> 0.13.0'
R
Robert Speicher 已提交
72 73
gem 'grape-entity', '~> 0.4.2'
gem 'rack-cors',    '~> 0.4.0', require: 'rack/cors'
R
randx 已提交
74 75

# Pagination
76
gem "kaminari", "~> 0.17.0"
R
randx 已提交
77 78

# HAML
79
gem 'hamlit', '~> 2.5'
R
randx 已提交
80 81

# Files attachments
R
Rubén Dávila 已提交
82
gem "carrierwave", '~> 0.10.0'
83

84
# Drag and Drop UI
D
Douwe Maan 已提交
85
gem 'dropzonejs-rails', '~> 0.7.1'
86

S
Stan Hu 已提交
87 88
# for backups
gem 'fog-aws', '~> 0.9'
89
gem 'fog-azure', '~> 0.0'
S
Stan Hu 已提交
90 91 92 93
gem 'fog-core', '~> 1.40'
gem 'fog-local', '~> 0.3'
gem 'fog-google', '~> 0.3'
gem 'fog-openstack', '~> 0.1'
94
gem 'fog-rackspace', '~> 0.1.1'
S
Stan Hu 已提交
95

96
# for aws storage
D
Douwe Maan 已提交
97
gem "unf", '~> 0.1.4'
R
randx 已提交
98 99

# Authorization
D
Douwe Maan 已提交
100
gem "six", '~> 0.2.0'
R
randx 已提交
101 102

# Seed data
D
Douwe Maan 已提交
103
gem "seed-fu", '~> 2.3.5'
R
randx 已提交
104

R
Robert Speicher 已提交
105
# Markdown and HTML processing
106
gem 'html-pipeline', '~> 1.11.0'
D
Douwe Maan 已提交
107 108
gem 'task_list',     '~> 1.0.2', require: 'task_list/railtie'
gem 'github-markup', '~> 1.3.1'
109
gem 'redcarpet',     '~> 3.3.3'
110
gem 'RedCloth',      '~> 4.2.9'
R
Robert Speicher 已提交
111
gem 'rdoc',          '~>3.6'
D
Douwe Maan 已提交
112
gem 'org-ruby',      '~> 0.9.12'
R
Robert Speicher 已提交
113
gem 'creole',        '~> 0.5.0'
V
Valery Sizov 已提交
114
gem 'wikicloth',     '0.8.1'
115
gem 'asciidoctor',   '~> 1.5.2'
S
Stan Hu 已提交
116
gem 'rouge',         '~> 1.11'
R
randx 已提交
117

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

S
skv-headless 已提交
122 123 124
# Diffs
gem 'diffy', '~> 3.0.3'

125
# Application server
J
Jacob Vosmaer 已提交
126
group :unicorn do
R
Robert Speicher 已提交
127
  gem "unicorn", '~> 4.9.0'
D
Douwe Maan 已提交
128
  gem 'unicorn-worker-killer', '~> 0.4.2'
J
Jacob Vosmaer 已提交
129
end
R
randx 已提交
130

A
Andrew8xx8 已提交
131
# State machine
132
gem "state_machines-activerecord", '~> 0.4.0'
133 134
# Run events after state machine commits
gem 'after_commit_queue'
A
Andrew8xx8 已提交
135

R
randx 已提交
136
# Issue tags
N
Nihad Abbasov 已提交
137
gem 'acts-as-taggable-on', '~> 3.4'
R
randx 已提交
138 139

# Background jobs
D
Douwe Maan 已提交
140
gem 'sinatra', '~> 1.4.4', require: nil
G
Gabriel Mazetto 已提交
141 142 143
gem 'sidekiq', '~> 4.0'
gem 'sidekiq-cron', '~> 0.4.0'
gem 'redis-namespace'
R
randx 已提交
144 145

# HTTP requests
D
Douwe Maan 已提交
146
gem "httparty", '~> 0.13.3'
R
randx 已提交
147 148

# Colored output to console
C
Connor Shea 已提交
149
gem "rainbow", '~> 2.1.0'
R
randx 已提交
150

R
Riyad Preukschas 已提交
151
# GitLab settings
D
Douwe Maan 已提交
152
gem 'settingslogic', '~> 2.0.9'
A
Aleksei Kvitinskii 已提交
153

R
randx 已提交
154
# Misc
D
Douwe Maan 已提交
155 156

gem 'version_sorter', '~> 2.0.0'
R
randx 已提交
157

158
# Cache
D
Douwe Maan 已提交
159
gem "redis-rails", '~> 4.0.0'
160

161 162 163 164
# Redis
gem 'redis', '~> 3.2'
gem 'connection_pool', '~> 2.0'

165
# Campfire integration
R
Robert Speicher 已提交
166
gem 'tinder', '~> 1.10.0'
167

R
Ronald van Eede 已提交
168
# HipChat integration
C
Chulki Lee 已提交
169
gem 'hipchat', '~> 1.5.0'
R
Ronald van Eede 已提交
170

171
# Flowdock integration
172
gem "gitlab-flowdock-git-hook", "~> 1.0.1"
173

174 175 176
# Gemnasium integration
gem "gemnasium-gitlab-service", "~> 0.2"

177
# Slack integration
178
gem "slack-notifier", "~> 1.2.0"
179

J
Jeremy 已提交
180
# Asana integration
R
Robert Speicher 已提交
181
gem 'asana', '~> 0.4.0'
J
Jeremy 已提交
182

J
Jared Szechy 已提交
183
# FogBugz integration
J
Jared Szechy 已提交
184
gem 'ruby-fogbugz', '~> 0.2.1'
J
Jared Szechy 已提交
185

186
# d3
R
Robert Speicher 已提交
187
gem 'd3_rails', '~> 3.5.0'
188 189

# underscore-rails
190
gem "underscore-rails", "~> 1.8.0"
191

192
# Sanitize user input
193
gem "sanitize", '~> 2.0'
194
gem 'babosa', '~> 1.0.2'
195

S
Stan Hu 已提交
196 197 198
# Sanitizes SVG input
gem "loofah", "~> 2.0.3"

199
# Working with license
200
gem 'licensee', '~> 8.0.0'
201

M
Marin Jankovski 已提交
202
# Protect against bruteforcing
203
gem "rack-attack", '~> 4.3.1'
M
Marin Jankovski 已提交
204

D
Dmitriy Zaporozhets 已提交
205
# Ace editor
A
Alfredo Sumaran 已提交
206
gem 'ace-rails-ap', '~> 4.0.2'
D
Dmitriy Zaporozhets 已提交
207

208
# Keyboard shortcuts
D
Douwe Maan 已提交
209
gem 'mousetrap-rails', '~> 1.4.6'
R
Robert Schilling 已提交
210

211
# Detect and convert string character encoding
212
gem 'charlock_holmes', '~> 0.7.3'
213

214 215 216
# Parse duration
gem 'chronic_duration', '~> 0.10.6'

R
Robert Speicher 已提交
217
gem "sass-rails", '~> 5.0.0'
D
Douwe Maan 已提交
218
gem "coffee-rails", '~> 4.1.0'
R
Robert Speicher 已提交
219
gem "uglifier", '~> 2.7.2'
R
Robert Speicher 已提交
220
gem 'turbolinks', '~> 2.5.0'
221
gem 'jquery-turbolinks', '~> 2.1.0'
222

D
Douwe Maan 已提交
223
gem 'addressable',        '~> 2.3.8'
224
gem 'bootstrap-sass',     '~> 3.3.0'
225
gem 'font-awesome-rails', '~> 4.6.1'
226
gem 'gitlab_emoji',       '~> 0.3.0'
R
Robert Speicher 已提交
227
gem 'gon',                '~> 6.0.1'
228
gem 'jquery-atwho-rails', '~> 1.3.2'
229
gem 'jquery-rails',       '~> 4.1.0'
230
gem 'jquery-ui-rails',    '~> 5.0.0'
231
gem 'request_store',      '~> 1.3.0'
R
Robert Speicher 已提交
232
gem 'select2-rails',      '~> 3.5.9'
D
Douwe Maan 已提交
233
gem 'virtus',             '~> 1.0.1'
234
gem 'net-ssh',            '~> 3.0.1'
K
Kamil Trzcinski 已提交
235
gem 'base32',             '~> 0.3.0'
G
gitlabhq 已提交
236

237
# Sentry integration
238
gem 'sentry-raven', '~> 1.1.0'
239

D
Douwe Maan 已提交
240 241
gem 'premailer-rails', '~> 1.9.0'

242 243
# Metrics
group :metrics do
244
  gem 'allocations', '~> 1.0', require: false, platform: :mri
245
  gem 'method_source', '~> 0.8', require: false
246 247 248
  gem 'influxdb', '~> 0.2', require: false
end

N
Nihad Abbasov 已提交
249
group :development do
D
Douwe Maan 已提交
250
  gem "foreman"
251
  gem 'brakeman', '~> 3.3.0', require: false
D
Douwe Maan 已提交
252

R
Robert Speicher 已提交
253
  gem 'letter_opener_web', '~> 1.3.0'
D
Douwe Maan 已提交
254
  gem 'quiet_assets', '~> 1.0.2'
255
  gem 'rerun', '~> 0.11.0'
Y
Yorick Peterse 已提交
256
  gem 'bullet', require: false
257
  gem 'rblineprof', platform: :mri, require: false
V
Valery Sizov 已提交
258
  gem 'web-console', '~> 2.0'
D
Dmitriy Zaporozhets 已提交
259

260
  # Better errors handler
D
Douwe Maan 已提交
261 262
  gem 'better_errors', '~> 1.0.1'
  gem 'binding_of_caller', '~> 0.7.2'
263 264

  # Docs generator
D
Douwe Maan 已提交
265
  gem "sdoc", '~> 0.3.20'
266 267

  # thin instead webrick
D
Douwe Maan 已提交
268
  gem 'thin', '~> 1.6.1'
G
gitlabhq 已提交
269 270 271
end

group :development, :test do
Y
Yorick Peterse 已提交
272
  gem 'byebug', platform: :mri
R
Robert Speicher 已提交
273 274
  gem 'pry-rails'

275
  gem 'awesome_print', '~> 1.2.0', require: false
D
Douwe Maan 已提交
276 277
  gem 'fuubar', '~> 2.0.0'

278 279
  gem 'database_cleaner',   '~> 1.4.0'
  gem 'factory_girl_rails', '~> 4.6.0'
280
  gem 'rspec-rails',        '~> 3.4.0'
K
Kamil Trzcinski 已提交
281
  gem 'rspec-retry'
282
  gem 'spinach-rails',      '~> 0.2.1'
K
Kamil Trzcinski 已提交
283
  gem 'spinach-rerun-reporter', '~> 0.0.2'
R
randx 已提交
284

285
  # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
D
Douwe Maan 已提交
286
  gem 'minitest', '~> 5.7.0'
287

288
  # Generate Fake data
R
Robert Speicher 已提交
289
  gem 'ffaker', '~> 2.0.0'
290

S
Stan Hu 已提交
291
  gem 'capybara',            '~> 2.6.2'
R
Robert Speicher 已提交
292
  gem 'capybara-screenshot', '~> 1.0.0'
R
Robert Speicher 已提交
293
  gem 'poltergeist',         '~> 1.9.0'
A
Andrew8xx8 已提交
294

295
  gem 'teaspoon', '~> 1.1.0'
D
Douwe Maan 已提交
296
  gem 'teaspoon-jasmine', '~> 2.2.0'
J
Jeroen van Baarsen 已提交
297

298
  gem 'spring',                   '~> 1.7.0'
D
Douwe Maan 已提交
299
  gem 'spring-commands-rspec',    '~> 1.0.4'
300
  gem 'spring-commands-spinach',  '~> 1.1.0'
301
  gem 'spring-commands-teaspoon', '~> 0.0.2'
D
Douwe Maan 已提交
302

R
Robert Speicher 已提交
303
  gem 'rubocop', '~> 0.40.0', require: false
R
Robert Speicher 已提交
304
  gem 'rubocop-rspec', '~> 1.5.0', require: false
305
  gem 'scss_lint', '~> 0.47.0', require: false
306
  gem 'simplecov', '~> 0.11.0', require: false
307
  gem 'flog', require: false
308
  gem 'flay', require: false
D
Dmitriy Zaporozhets 已提交
309
  gem 'bundler-audit', require: false
310 311

  gem 'benchmark-ips', require: false
C
Connor Shea 已提交
312 313

  gem "license_finder", require: false
314
  gem 'knapsack'
G
gitlabhq 已提交
315 316 317
end

group :test do
R
Robert Speicher 已提交
318
  gem 'shoulda-matchers', '~> 2.8.0', require: false
R
Robert Speicher 已提交
319
  gem 'email_spec', '~> 1.6.0'
320
  gem 'webmock', '~> 1.21.0'
321
  gem 'test_after_commit', '~> 0.4.2'
J
Jared Szechy 已提交
322
  gem 'sham_rack'
G
gitlabhq 已提交
323
end
324 325

group :production do
D
Dmitriy Zaporozhets 已提交
326
  gem "gitlab_meta", '7.0'
327
end
J
Jacob Vosmaer 已提交
328

329 330
gem "newrelic_rpm", '~> 3.14'

331
gem 'octokit', '~> 4.3.0'
D
Douwe Maan 已提交
332

333
gem "mail_room", "~> 0.8"
D
Douwe Maan 已提交
334

D
Douwe Maan 已提交
335 336 337
gem 'email_reply_parser', '~> 0.5.8'

## CI
338
gem 'activerecord-session_store', '~> 1.0.0'
D
Douwe Maan 已提交
339 340 341 342 343 344 345
gem "nested_form", '~> 0.3.2'

# OAuth
gem 'oauth2', '~> 1.0.0'

# Soft deletion
gem "paranoia", "~> 2.0"
346 347 348

# Health check
gem 'health_check', '~> 1.5.1'
349 350 351

# System information
gem 'vmstat', '~> 2.1.0'
352
gem 'sys-filesystem', '~> 1.1.6'