BigW Consortium Gitlab

Gemfile 7.99 KB
Newer Older
Sytse Sijbrandij committed
1
source "https://rubygems.org"
gitlabhq committed
2

Robert Speicher committed
3
gem 'rails', '4.2.6'
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'
12

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

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

karen Carias committed
20
# Authentication libraries
21
gem 'devise',                 '~> 3.5.4'
22
gem 'doorkeeper',             '~> 3.1'
23
gem 'devise-async',           '~> 0.9.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.2.0'
33
gem 'omniauth-kerberos',      '~> 0.3.0', group: :kerberos
34
gem 'omniauth-saml',          '~> 1.5.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', require: 'recaptcha/rails'
43
gem 'akismet', '~> 2.0'
44

45
# Two-factor authentication
46
gem 'devise-two-factor', '~> 2.0.0'
47 48
gem 'rqrcode-rails3', '~> 0.1.7'
gem 'attr_encrypted', '~> 1.3.4'
49

50
# Browser detection
51
gem "browser", '~> 1.0.0'
52

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

57
# LDAP Auth
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
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

67
# Language detection
68
gem "github-linguist", "~> 4.7.0", require: "linguist"
69

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

# Pagination
76
gem "kaminari", "~> 0.17.0"
randx committed
77 78

# HAML
79
gem "haml-rails", '~> 0.9.0'
randx committed
80 81

# Files attachments
82
gem "carrierwave", '~> 0.10.0'
83

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

87
# for aws storage
Stan Hu committed
88
gem "fog", "~> 1.36.0"
89
gem "unf", '~> 0.1.4'
randx committed
90 91

# Authorization
92
gem "six", '~> 0.2.0'
randx committed
93 94

# Seed data
95
gem "seed-fu", '~> 2.3.5'
randx committed
96

Robert Speicher committed
97
# Markdown and HTML processing
98
gem 'html-pipeline', '~> 1.11.0'
99 100
gem 'task_list',     '~> 1.0.2', require: 'task_list/railtie'
gem 'github-markup', '~> 1.3.1'
101
gem 'redcarpet',     '~> 3.3.3'
102
gem 'RedCloth',      '~> 4.2.9'
Robert Speicher committed
103
gem 'rdoc',          '~>3.6'
104
gem 'org-ruby',      '~> 0.9.12'
105
gem 'creole',        '~> 0.5.0'
Valery Sizov committed
106
gem 'wikicloth',     '0.8.1'
107
gem 'asciidoctor',   '~> 1.5.2'
108
gem 'rouge',         '~> 1.10.1'
randx committed
109

110
# See https://groups.google.com/forum/#!topic/ruby-security-ann/aSbgDiwb24s
111
# and https://groups.google.com/forum/#!topic/ruby-security-ann/Dy7YiKb_pMM
112
gem 'nokogiri', '~> 1.6.7', '>= 1.6.7.2'
113

skv-headless committed
114 115 116
# Diffs
gem 'diffy', '~> 3.0.3'

117
# Application server
118
group :unicorn do
119
  gem "unicorn", '~> 4.9.0'
120
  gem 'unicorn-worker-killer', '~> 0.4.2'
121
end
randx committed
122

Andrew8xx8 committed
123
# State machine
124
gem "state_machines-activerecord", '~> 0.4.0'
125 126
# Run events after state machine commits
gem 'after_commit_queue'
Andrew8xx8 committed
127

randx committed
128
# Issue tags
129
gem 'acts-as-taggable-on', '~> 3.4'
randx committed
130 131

# Background jobs
132
gem 'sinatra', '~> 1.4.4', require: nil
133 134 135
gem 'sidekiq', '~> 4.0'
gem 'sidekiq-cron', '~> 0.4.0'
gem 'redis-namespace'
randx committed
136 137

# HTTP requests
138
gem "httparty", '~> 0.13.3'
randx committed
139 140

# Colored output to console
141
gem "colorize", '~> 0.7.0'
randx committed
142

Riyad Preukschas committed
143
# GitLab settings
144
gem 'settingslogic', '~> 2.0.9'
145

randx committed
146
# Misc
147 148

gem 'version_sorter', '~> 2.0.0'
randx committed
149

150
# Cache
151
gem "redis-rails", '~> 4.0.0'
152

153 154 155 156
# Redis
gem 'redis', '~> 3.2'
gem 'connection_pool', '~> 2.0'

157
# Campfire integration
158
gem 'tinder', '~> 1.10.0'
159

160
# HipChat integration
Chulki Lee committed
161
gem 'hipchat', '~> 1.5.0'
162

163
# Flowdock integration
164
gem "gitlab-flowdock-git-hook", "~> 1.0.1"
165

166 167 168
# Gemnasium integration
gem "gemnasium-gitlab-service", "~> 0.2"

169
# Slack integration
170
gem "slack-notifier", "~> 1.2.0"
171

Jeremy committed
172
# Asana integration
173
gem 'asana', '~> 0.4.0'
Jeremy committed
174

Jared Szechy committed
175
# FogBugz integration
Jared Szechy committed
176
gem 'ruby-fogbugz', '~> 0.2.1'
Jared Szechy committed
177

178
# d3
179
gem 'd3_rails', '~> 3.5.0'
180 181

# underscore-rails
182
gem "underscore-rails", "~> 1.8.0"
183

184
# Sanitize user input
185
gem "sanitize", '~> 2.0'
186
gem 'babosa', '~> 1.0.2'
187

Stan Hu committed
188 189 190
# Sanitizes SVG input
gem "loofah", "~> 2.0.3"

191
# Working with license
192
gem 'licensee', '~> 8.0.0'
193

Marin Jankovski committed
194
# Protect against bruteforcing
195
gem "rack-attack", '~> 4.3.1'
Marin Jankovski committed
196

197
# Ace editor
Alfredo Sumaran committed
198
gem 'ace-rails-ap', '~> 4.0.2'
199

200
# Keyboard shortcuts
201
gem 'mousetrap-rails', '~> 1.4.6'
202

203
# Detect and convert string character encoding
204
gem 'charlock_holmes', '~> 0.7.3'
205

206
gem "sass-rails", '~> 5.0.0'
207
gem "coffee-rails", '~> 4.1.0'
208
gem "uglifier", '~> 2.7.2'
209
gem 'turbolinks', '~> 2.5.0'
210
gem 'jquery-turbolinks', '~> 2.1.0'
211

212
gem 'addressable',        '~> 2.3.8'
213
gem 'bootstrap-sass',     '~> 3.3.0'
214
gem 'font-awesome-rails', '~> 4.2'
215
gem 'gitlab_emoji',       '~> 0.3.0'
Robert Speicher committed
216
gem 'gon',                '~> 6.0.1'
217
gem 'jquery-atwho-rails', '~> 1.3.2'
218
gem 'jquery-rails',       '~> 4.1.0'
219
gem 'jquery-ui-rails',    '~> 5.0.0'
220
gem 'raphael-rails',      '~> 2.1.2'
221
gem 'request_store',      '~> 1.3.0'
222
gem 'select2-rails',      '~> 3.5.9'
223
gem 'virtus',             '~> 1.0.1'
224
gem 'net-ssh',            '~> 3.0.1'
Kamil Trzcinski committed
225
gem 'base32',             '~> 0.3.0'
gitlabhq committed
226

227
# Sentry integration
228
gem 'sentry-raven', '~> 0.15'
229

230 231
gem 'premailer-rails', '~> 1.9.0'

232 233
# Metrics
group :metrics do
234
  gem 'allocations', '~> 1.0', require: false, platform: :mri
235
  gem 'method_source', '~> 0.8', require: false
236 237 238
  gem 'influxdb', '~> 0.2', require: false
end

Nihad Abbasov committed
239
group :development do
240
  gem "foreman"
241
  gem 'brakeman', '~> 3.2.0', require: false
242

243
  gem 'letter_opener_web', '~> 1.3.0'
244
  gem 'quiet_assets', '~> 1.0.2'
245
  gem 'rerun', '~> 0.11.0'
246
  gem 'bullet', require: false
247
  gem 'rblineprof', platform: :mri, require: false
Valery Sizov committed
248
  gem 'web-console', '~> 2.0'
249

250
  # Better errors handler
251 252
  gem 'better_errors', '~> 1.0.1'
  gem 'binding_of_caller', '~> 0.7.2'
253 254

  # Docs generator
255
  gem "sdoc", '~> 0.3.20'
256 257

  # thin instead webrick
258
  gem 'thin', '~> 1.6.1'
gitlabhq committed
259 260 261
end

group :development, :test do
262
  gem 'byebug', platform: :mri
Robert Speicher committed
263 264
  gem 'pry-rails'

265
  gem 'awesome_print', '~> 1.2.0', require: false
266 267
  gem 'fuubar', '~> 2.0.0'

268 269
  gem 'database_cleaner',   '~> 1.4.0'
  gem 'factory_girl_rails', '~> 4.6.0'
270
  gem 'rspec-rails',        '~> 3.4.0'
Kamil Trzcinski committed
271
  gem 'rspec-retry'
272
  gem 'spinach-rails',      '~> 0.2.1'
Kamil Trzcinski committed
273
  gem 'spinach-rerun-reporter', '~> 0.0.2'
randx committed
274

275
  # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
276
  gem 'minitest', '~> 5.7.0'
277

278
  # Generate Fake data
Robert Speicher committed
279
  gem 'ffaker', '~> 2.0.0'
280

Stan Hu committed
281
  gem 'capybara',            '~> 2.6.2'
Robert Speicher committed
282
  gem 'capybara-screenshot', '~> 1.0.0'
283
  gem 'poltergeist',         '~> 1.9.0'
Andrew8xx8 committed
284

285
  gem 'teaspoon', '~> 1.1.0'
286
  gem 'teaspoon-jasmine', '~> 2.2.0'
287

288
  gem 'spring',                   '~> 1.7.0'
289
  gem 'spring-commands-rspec',    '~> 1.0.4'
290
  gem 'spring-commands-spinach',  '~> 1.1.0'
291
  gem 'spring-commands-teaspoon', '~> 0.0.2'
292

293
  gem 'rubocop', '~> 0.40.0', require: false
Robert Speicher committed
294
  gem 'rubocop-rspec', '~> 1.5.0', require: false
295
  gem 'scss_lint', '~> 0.47.0', require: false
296
  gem 'coveralls', '~> 0.8.2', require: false
297
  gem 'simplecov', '~> 0.11.0', require: false
298
  gem 'flog', require: false
299
  gem 'flay', require: false
300
  gem 'bundler-audit', require: false
301 302

  gem 'benchmark-ips', require: false
gitlabhq committed
303 304 305
end

group :test do
306
  gem 'shoulda-matchers', '~> 2.8.0', require: false
307
  gem 'email_spec', '~> 1.6.0'
308
  gem 'webmock', '~> 1.21.0'
309
  gem 'test_after_commit', '~> 0.4.2'
Jared Szechy committed
310
  gem 'sham_rack'
gitlabhq committed
311
end
312 313

group :production do
314
  gem "gitlab_meta", '7.0'
315
end
316

317 318
gem "newrelic_rpm", '~> 3.14'

319
gem 'octokit', '~> 4.3.0'
Douwe Maan committed
320

321
gem "mail_room", "~> 0.7"
Douwe Maan committed
322

323 324 325
gem 'email_reply_parser', '~> 0.5.8'

## CI
326
gem 'activerecord-session_store', '~> 1.0.0'
327 328 329 330 331 332 333
gem "nested_form", '~> 0.3.2'

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

# Soft deletion
gem "paranoia", "~> 2.0"
334 335 336

# Health check
gem 'health_check', '~> 1.5.1'