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

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

9 10 11 12
# Specify a sprockets version due to security issue
# See https://groups.google.com/forum/#!topic/rubyonrails-security/doAVp0YaTqY
gem 'sprockets', '~> 2.12.3'

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',                 '~> 3.5.4'
22
gem 'devise-async',           '~> 0.9.0'
R
Robert Speicher 已提交
23
gem 'doorkeeper',             '~> 2.2.0'
24
gem 'omniauth',               '~> 1.2.2'
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.4.2'
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'
D
Dmitriy Zaporozhets 已提交
38

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

43
# Two-factor authentication
44
gem 'devise-two-factor', '~> 2.0.0'
D
Douwe Maan 已提交
45 46
gem 'rqrcode-rails3', '~> 0.1.7'
gem 'attr_encrypted', '~> 1.3.4'
47

48
# Browser detection
49
gem "browser", '~> 1.0.0'
50

D
Dmitriy Zaporozhets 已提交
51
# Extracting information from a git repository
D
Dmitriy Zaporozhets 已提交
52
# Provide access to Gitlab::Git library
53
gem "gitlab_git", '~> 8.1'
54

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

60
# Git Wiki
61
gem 'gollum-lib', '~> 4.1.0'
62

V
Valeriy Sizov 已提交
63
# Language detection
64
gem "github-linguist", "~> 4.7.0", require: "linguist"
V
Valeriy Sizov 已提交
65

R
randx 已提交
66
# API
K
Kamil Trzcinski 已提交
67
gem 'grape',        '~> 0.13.0'
R
Robert Speicher 已提交
68 69
gem 'grape-entity', '~> 0.4.2'
gem 'rack-cors',    '~> 0.4.0', require: 'rack/cors'
R
randx 已提交
70 71

# Pagination
72
gem "kaminari", "~> 0.16.3"
R
randx 已提交
73 74

# HAML
R
Robert Speicher 已提交
75
gem "haml-rails", '~> 0.9.0'
R
randx 已提交
76 77

# Files attachments
D
Douwe Maan 已提交
78
gem "carrierwave", '~> 0.9.0'
79

80
# Drag and Drop UI
D
Douwe Maan 已提交
81
gem 'dropzonejs-rails', '~> 0.7.1'
82

83
# for aws storage
S
Stan Hu 已提交
84
gem "fog", "~> 1.36.0"
D
Douwe Maan 已提交
85
gem "unf", '~> 0.1.4'
R
randx 已提交
86 87

# Authorization
D
Douwe Maan 已提交
88
gem "six", '~> 0.2.0'
R
randx 已提交
89 90

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

R
Robert Speicher 已提交
93
# Markdown and HTML processing
94
gem 'html-pipeline', '~> 1.11.0'
D
Douwe Maan 已提交
95 96
gem 'task_list',     '~> 1.0.2', require: 'task_list/railtie'
gem 'github-markup', '~> 1.3.1'
97
gem 'redcarpet',     '~> 3.3.3'
98
gem 'RedCloth',      '~> 4.2.9'
R
Robert Speicher 已提交
99
gem 'rdoc',          '~>3.6'
D
Douwe Maan 已提交
100
gem 'org-ruby',      '~> 0.9.12'
R
Robert Speicher 已提交
101
gem 'creole',        '~> 0.5.0'
V
Valery Sizov 已提交
102
gem 'wikicloth',     '0.8.1'
103
gem 'asciidoctor',   '~> 1.5.2'
104
gem 'rouge',         '~> 1.10.1'
R
randx 已提交
105

106
# See https://groups.google.com/forum/#!topic/ruby-security-ann/aSbgDiwb24s
107
# and https://groups.google.com/forum/#!topic/ruby-security-ann/Dy7YiKb_pMM
108
gem 'nokogiri', '~> 1.6.7', '>= 1.6.7.2'
109

S
skv-headless 已提交
110 111 112
# Diffs
gem 'diffy', '~> 3.0.3'

113
# Application server
J
Jacob Vosmaer 已提交
114
group :unicorn do
D
Douwe Maan 已提交
115 116
  gem "unicorn", '~> 4.8.2'
  gem 'unicorn-worker-killer', '~> 0.4.2'
J
Jacob Vosmaer 已提交
117
end
R
randx 已提交
118

A
Andrew8xx8 已提交
119
# State machine
120
gem "state_machines-activerecord", '~> 0.3.0'
121 122
# Run events after state machine commits
gem 'after_commit_queue'
A
Andrew8xx8 已提交
123

R
randx 已提交
124
# Issue tags
N
Nihad Abbasov 已提交
125
gem 'acts-as-taggable-on', '~> 3.4'
R
randx 已提交
126 127

# Background jobs
D
Douwe Maan 已提交
128
gem 'sinatra', '~> 1.4.4', require: nil
G
Gabriel Mazetto 已提交
129 130 131
gem 'sidekiq', '~> 4.0'
gem 'sidekiq-cron', '~> 0.4.0'
gem 'redis-namespace'
R
randx 已提交
132 133

# HTTP requests
D
Douwe Maan 已提交
134
gem "httparty", '~> 0.13.3'
R
randx 已提交
135 136

# Colored output to console
R
Robert Speicher 已提交
137
gem "colorize", '~> 0.7.0'
R
randx 已提交
138

R
Riyad Preukschas 已提交
139
# GitLab settings
D
Douwe Maan 已提交
140
gem 'settingslogic', '~> 2.0.9'
A
Aleksei Kvitinskii 已提交
141

R
randx 已提交
142
# Misc
D
Douwe Maan 已提交
143 144

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

146
# Cache
D
Douwe Maan 已提交
147
gem "redis-rails", '~> 4.0.0'
148

149
# Campfire integration
R
Robert Speicher 已提交
150
gem 'tinder', '~> 1.10.0'
151

R
Ronald van Eede 已提交
152
# HipChat integration
C
Chulki Lee 已提交
153
gem 'hipchat', '~> 1.5.0'
R
Ronald van Eede 已提交
154

155
# Flowdock integration
156
gem "gitlab-flowdock-git-hook", "~> 1.0.1"
157

158 159 160
# Gemnasium integration
gem "gemnasium-gitlab-service", "~> 0.2"

161
# Slack integration
162
gem "slack-notifier", "~> 1.2.0"
163

J
Jeremy 已提交
164
# Asana integration
R
Robert Speicher 已提交
165
gem 'asana', '~> 0.4.0'
J
Jeremy 已提交
166

J
Jared Szechy 已提交
167
# FogBugz integration
J
Jared Szechy 已提交
168
gem 'ruby-fogbugz', '~> 0.2.1'
J
Jared Szechy 已提交
169

170
# d3
R
Robert Speicher 已提交
171
gem 'd3_rails', '~> 3.5.0'
172

173
#cal-heatmap
174
gem 'cal-heatmap-rails', '~> 3.5.0'
175

176
# underscore-rails
177
gem "underscore-rails", "~> 1.8.0"
178

179
# Sanitize user input
180
gem "sanitize", '~> 2.0'
181
gem 'babosa', '~> 1.0.2'
182

S
Stan Hu 已提交
183 184 185
# Sanitizes SVG input
gem "loofah", "~> 2.0.3"

M
Marin Jankovski 已提交
186
# Protect against bruteforcing
187
gem "rack-attack", '~> 4.3.1'
M
Marin Jankovski 已提交
188

D
Dmitriy Zaporozhets 已提交
189
# Ace editor
D
Douwe Maan 已提交
190
gem 'ace-rails-ap', '~> 2.0.1'
D
Dmitriy Zaporozhets 已提交
191

192
# Keyboard shortcuts
D
Douwe Maan 已提交
193
gem 'mousetrap-rails', '~> 1.4.6'
R
Robert Schilling 已提交
194

195
# Detect and convert string character encoding
196
gem 'charlock_holmes', '~> 0.7.3'
197

R
Robert Speicher 已提交
198
gem "sass-rails", '~> 5.0.0'
D
Douwe Maan 已提交
199
gem "coffee-rails", '~> 4.1.0'
R
Robert Speicher 已提交
200
gem "uglifier", '~> 2.7.2'
R
Robert Speicher 已提交
201
gem 'turbolinks', '~> 2.5.0'
202
gem 'jquery-turbolinks', '~> 2.1.0'
203

D
Douwe Maan 已提交
204
gem 'addressable',        '~> 2.3.8'
205
gem 'bootstrap-sass',     '~> 3.3.0'
R
Robert Speicher 已提交
206
gem 'font-awesome-rails', '~> 4.2'
R
Robert Speicher 已提交
207
gem 'gitlab_emoji',       '~> 0.2.0'
R
Robert Speicher 已提交
208
gem 'gon',                '~> 6.0.1'
209
gem 'jquery-atwho-rails', '~> 1.3.2'
210
gem 'jquery-rails',       '~> 4.0.0'
D
Douwe Maan 已提交
211
gem 'jquery-scrollto-rails', '~> 1.4.3'
212
gem 'jquery-ui-rails',    '~> 5.0.0'
R
Robert Speicher 已提交
213
gem 'nprogress-rails',    '~> 0.1.6.7'
R
Robert Speicher 已提交
214
gem 'raphael-rails',      '~> 2.1.2'
D
Douwe Maan 已提交
215
gem 'request_store',      '~> 1.2.0'
R
Robert Speicher 已提交
216
gem 'select2-rails',      '~> 3.5.9'
D
Douwe Maan 已提交
217
gem 'virtus',             '~> 1.0.1'
218
gem 'net-ssh',            '~> 3.0.1'
G
gitlabhq 已提交
219

220 221 222
# Sentry integration
gem 'sentry-raven'

223 224
# Metrics
group :metrics do
225
  gem 'allocations', '~> 1.0', require: false, platform: :mri
226
  gem 'method_source', '~> 0.8', require: false
227 228 229 230
  gem 'influxdb', '~> 0.2', require: false
  gem 'connection_pool', '~> 2.0', require: false
end

N
Nihad Abbasov 已提交
231
group :development do
D
Douwe Maan 已提交
232
  gem "foreman"
R
Robert Speicher 已提交
233
  gem 'brakeman', '~> 3.1.0', require: false
D
Douwe Maan 已提交
234 235 236 237

  gem "annotate", "~> 2.6.0"
  gem "letter_opener", '~> 1.1.2'
  gem 'quiet_assets', '~> 1.0.2'
238
  gem 'rerun', '~> 0.11.0'
Y
Yorick Peterse 已提交
239
  gem 'bullet', require: false
240
  gem 'rblineprof', platform: :mri, require: false
V
Valery Sizov 已提交
241
  gem 'web-console', '~> 2.0'
D
Dmitriy Zaporozhets 已提交
242

243
  # Better errors handler
D
Douwe Maan 已提交
244 245
  gem 'better_errors', '~> 1.0.1'
  gem 'binding_of_caller', '~> 0.7.2'
246 247

  # Docs generator
D
Douwe Maan 已提交
248
  gem "sdoc", '~> 0.3.20'
249 250

  # thin instead webrick
D
Douwe Maan 已提交
251
  gem 'thin', '~> 1.6.1'
G
gitlabhq 已提交
252 253 254
end

group :development, :test do
Y
Yorick Peterse 已提交
255
  gem 'byebug', platform: :mri
R
Robert Speicher 已提交
256 257
  gem 'pry-rails'

258
  gem 'awesome_print', '~> 1.2.0', require: false
D
Douwe Maan 已提交
259 260
  gem 'fuubar', '~> 2.0.0'

261
  gem 'database_cleaner', '~> 1.4.0'
D
Douwe Maan 已提交
262
  gem 'factory_girl_rails', '~> 4.3.0'
263
  gem 'rspec-rails',      '~> 3.3.0'
D
Douwe Maan 已提交
264
  gem 'spinach-rails', '~> 0.2.1'
R
randx 已提交
265

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

269
  # Generate Fake data
R
Robert Speicher 已提交
270
  gem 'ffaker', '~> 2.0.0'
271

R
Robert Speicher 已提交
272
  gem 'capybara',            '~> 2.4.0'
R
Robert Speicher 已提交
273
  gem 'capybara-screenshot', '~> 1.0.0'
274
  gem 'poltergeist',         '~> 1.8.1'
A
Andrew8xx8 已提交
275

276
  gem 'teaspoon', '~> 1.0.0'
D
Douwe Maan 已提交
277
  gem 'teaspoon-jasmine', '~> 2.2.0'
J
Jeroen van Baarsen 已提交
278

D
Douwe Maan 已提交
279 280
  gem 'spring', '~> 1.3.6'
  gem 'spring-commands-rspec',    '~> 1.0.4'
281 282
  gem 'spring-commands-spinach',  '~> 1.0.0'
  gem 'spring-commands-teaspoon', '~> 0.0.2'
D
Douwe Maan 已提交
283

284
  gem 'rubocop', '~> 0.35.0', require: false
D
Douwe Maan 已提交
285 286
  gem 'coveralls',  '~> 0.8.2', require: false
  gem 'simplecov', '~> 0.10.0', require: false
287
  gem 'flog', require: false
288
  gem 'flay', require: false
D
Dmitriy Zaporozhets 已提交
289
  gem 'bundler-audit', require: false
290 291

  gem 'benchmark-ips', require: false
G
gitlabhq 已提交
292 293 294
end

group :test do
R
Robert Speicher 已提交
295
  gem 'shoulda-matchers', '~> 2.8.0', require: false
R
Robert Speicher 已提交
296
  gem 'email_spec', '~> 1.6.0'
297
  gem 'webmock', '~> 1.21.0'
298
  gem 'test_after_commit', '~> 0.4.2'
J
Jared Szechy 已提交
299
  gem 'sham_rack'
G
gitlabhq 已提交
300
end
301 302

group :production do
D
Dmitriy Zaporozhets 已提交
303
  gem "gitlab_meta", '7.0'
304
end
J
Jacob Vosmaer 已提交
305

R
Robert Speicher 已提交
306
gem 'octokit', '~> 3.8.0'
D
Douwe Maan 已提交
307

308
gem "mail_room", "~> 0.6.1"
D
Douwe Maan 已提交
309

D
Douwe Maan 已提交
310 311 312 313 314 315 316 317 318 319 320 321
gem 'email_reply_parser', '~> 0.5.8'

## CI
gem 'activerecord-deprecated_finders', '~> 1.0.3'
gem 'activerecord-session_store', '~> 0.1.0'
gem "nested_form", '~> 0.3.2'

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

# Soft deletion
gem "paranoia", "~> 2.0"