BigW Consortium Gitlab

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

Valery Sizov committed
3
gem 'rails', '4.2.4'
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 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'

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.3'
22
gem 'devise-async',           '~> 0.9.0'
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'
27
gem 'omniauth-cas3',          '~> 1.1.2'
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.0'
34
gem 'omniauth-shibboleth',    '~> 1.2.0'
35
gem 'omniauth-twitter',       '~> 1.2.0'
36
gem 'omniauth_crowd',         '~> 2.2.0'
37
gem 'rack-oauth2',            '~> 1.2.1'
38

39 40 41
# reCAPTCHA protection
gem 'recaptcha', require: 'recaptcha/rails'

42
# Two-factor authentication
43
gem 'devise-two-factor', '~> 2.0.0'
44 45
gem 'rqrcode-rails3', '~> 0.1.7'
gem 'attr_encrypted', '~> 1.3.4'
46

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

50
# Extracting information from a git repository
51
# Provide access to Gitlab::Git library
52
gem "gitlab_git", '~> 7.2.22'
53

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

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

62
# Language detection
63
gem "github-linguist", "~> 4.7.0", require: "linguist"
64

randx committed
65
# API
66
gem 'grape',        '~> 0.13.0'
67 68
gem 'grape-entity', '~> 0.4.2'
gem 'rack-cors',    '~> 0.4.0', require: 'rack/cors'
randx committed
69 70

# Pagination
71
gem "kaminari", "~> 0.16.3"
randx committed
72 73

# HAML
74
gem "haml-rails", '~> 0.9.0'
randx committed
75 76

# Files attachments
77
gem "carrierwave", '~> 0.9.0'
78

79
# Drag and Drop UI
80
gem 'dropzonejs-rails', '~> 0.7.1'
81

82
# for aws storage
Stan Hu committed
83
gem "fog", "~> 1.36.0"
84
gem "unf", '~> 0.1.4'
randx committed
85 86

# Authorization
87
gem "six", '~> 0.2.0'
randx committed
88 89

# Seed data
90
gem "seed-fu", '~> 2.3.5'
randx committed
91

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

105 106 107
# See https://groups.google.com/forum/#!topic/ruby-security-ann/aSbgDiwb24s
gem 'nokogiri', '1.6.7.1'

skv-headless committed
108 109 110
# Diffs
gem 'diffy', '~> 3.0.3'

111
# Application server
112
group :unicorn do
113 114
  gem "unicorn", '~> 4.8.2'
  gem 'unicorn-worker-killer', '~> 0.4.2'
115
end
randx committed
116

Andrew8xx8 committed
117
# State machine
118
gem "state_machines-activerecord", '~> 0.3.0'
119 120
# Run events after state machine commits
gem 'after_commit_queue'
Andrew8xx8 committed
121

randx committed
122
# Issue tags
123
gem 'acts-as-taggable-on', '~> 3.4'
randx committed
124 125

# Background jobs
126
gem 'sinatra', '~> 1.4.4', require: nil
127 128 129
gem 'sidekiq', '~> 4.0'
gem 'sidekiq-cron', '~> 0.4.0'
gem 'redis-namespace'
randx committed
130 131

# HTTP requests
132
gem "httparty", '~> 0.13.3'
randx committed
133 134

# Colored output to console
135
gem "colorize", '~> 0.7.0'
randx committed
136

Riyad Preukschas committed
137
# GitLab settings
138
gem 'settingslogic', '~> 2.0.9'
139

randx committed
140
# Misc
141 142

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

144
# Cache
145
gem "redis-rails", '~> 4.0.0'
146

147
# Campfire integration
148
gem 'tinder', '~> 1.10.0'
149

150
# HipChat integration
Chulki Lee committed
151
gem 'hipchat', '~> 1.5.0'
152

153
# Flowdock integration
154
gem "gitlab-flowdock-git-hook", "~> 1.0.1"
155

156 157 158
# Gemnasium integration
gem "gemnasium-gitlab-service", "~> 0.2"

159
# Slack integration
160
gem "slack-notifier", "~> 1.2.0"
161

Jeremy committed
162
# Asana integration
163
gem 'asana', '~> 0.4.0'
Jeremy committed
164

Jared Szechy committed
165
# FogBugz integration
Jared Szechy committed
166
gem 'ruby-fogbugz', '~> 0.2.1'
Jared Szechy committed
167

168
# d3
169
gem 'd3_rails', '~> 3.5.0'
170

171
#cal-heatmap
172
gem 'cal-heatmap-rails', '~> 3.5.0'
173

174
# underscore-rails
175
gem "underscore-rails", "~> 1.8.0"
176

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

Marin Jankovski committed
181
# Protect against bruteforcing
182
gem "rack-attack", '~> 4.3.1'
Marin Jankovski committed
183

184
# Ace editor
185
gem 'ace-rails-ap', '~> 2.0.1'
186

187
# Keyboard shortcuts
188
gem 'mousetrap-rails', '~> 1.4.6'
189

190
# Detect and convert string character encoding
191
gem 'charlock_holmes', '~> 0.7.3'
192

193
gem "sass-rails", '~> 5.0.0'
194
gem "coffee-rails", '~> 4.1.0'
195
gem "uglifier", '~> 2.7.2'
196
gem 'turbolinks', '~> 2.5.0'
197
gem 'jquery-turbolinks', '~> 2.1.0'
198

199
gem 'addressable',        '~> 2.3.8'
200
gem 'bootstrap-sass',     '~> 3.3.0'
201
gem 'font-awesome-rails', '~> 4.2'
202
gem 'gitlab_emoji',       '~> 0.2.0'
Robert Speicher committed
203
gem 'gon',                '~> 6.0.1'
204
gem 'jquery-atwho-rails', '~> 1.3.2'
205
gem 'jquery-rails',       '~> 4.0.0'
206
gem 'jquery-scrollto-rails', '~> 1.4.3'
207
gem 'jquery-ui-rails',    '~> 5.0.0'
208
gem 'nprogress-rails',    '~> 0.1.6.7'
209
gem 'raphael-rails',      '~> 2.1.2'
210
gem 'request_store',      '~> 1.2.0'
211
gem 'select2-rails',      '~> 3.5.9'
212
gem 'virtus',             '~> 1.0.1'
213
gem 'net-ssh',            '~> 3.0.1'
gitlabhq committed
214

215 216
# Metrics
group :metrics do
217
  gem 'allocations', '~> 1.0', require: false, platform: :mri
218
  gem 'method_source', '~> 0.8', require: false
219 220 221 222
  gem 'influxdb', '~> 0.2', require: false
  gem 'connection_pool', '~> 2.0', require: false
end

Nihad Abbasov committed
223
group :development do
224
  gem "foreman"
225
  gem 'brakeman', '~> 3.1.0', require: false
226 227 228 229

  gem "annotate", "~> 2.6.0"
  gem "letter_opener", '~> 1.1.2'
  gem 'quiet_assets', '~> 1.0.2'
230
  gem 'rerun', '~> 0.11.0'
231
  gem 'bullet', require: false
232
  gem 'rblineprof', platform: :mri, require: false
Valery Sizov committed
233
  gem 'web-console', '~> 2.0'
234

235
  # Better errors handler
236 237
  gem 'better_errors', '~> 1.0.1'
  gem 'binding_of_caller', '~> 0.7.2'
238 239

  # Docs generator
240
  gem "sdoc", '~> 0.3.20'
241 242

  # thin instead webrick
243
  gem 'thin', '~> 1.6.1'
gitlabhq committed
244 245 246
end

group :development, :test do
247
  gem 'byebug', platform: :mri
Robert Speicher committed
248 249
  gem 'pry-rails'

250
  gem 'awesome_print', '~> 1.2.0', require: false
251 252
  gem 'fuubar', '~> 2.0.0'

253
  gem 'database_cleaner', '~> 1.4.0'
254
  gem 'factory_girl_rails', '~> 4.3.0'
255
  gem 'rspec-rails',      '~> 3.3.0'
256
  gem 'spinach-rails', '~> 0.2.1'
randx committed
257

258
  # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
259
  gem 'minitest', '~> 5.7.0'
260

261
  # Generate Fake data
Robert Speicher committed
262
  gem 'ffaker', '~> 2.0.0'
263

264
  gem 'capybara',            '~> 2.4.0'
Robert Speicher committed
265
  gem 'capybara-screenshot', '~> 1.0.0'
266
  gem 'poltergeist',         '~> 1.8.1'
Andrew8xx8 committed
267

268
  gem 'teaspoon', '~> 1.0.0'
269
  gem 'teaspoon-jasmine', '~> 2.2.0'
270

271 272
  gem 'spring', '~> 1.3.6'
  gem 'spring-commands-rspec',    '~> 1.0.4'
273 274
  gem 'spring-commands-spinach',  '~> 1.0.0'
  gem 'spring-commands-teaspoon', '~> 0.0.2'
275

276
  gem 'rubocop', '~> 0.35.0', require: false
277 278
  gem 'coveralls',  '~> 0.8.2', require: false
  gem 'simplecov', '~> 0.10.0', require: false
279
  gem 'flog', require: false
280
  gem 'flay', require: false
281
  gem 'bundler-audit', require: false
282 283

  gem 'benchmark-ips', require: false
gitlabhq committed
284 285 286
end

group :test do
287
  gem 'shoulda-matchers', '~> 2.8.0', require: false
288
  gem 'email_spec', '~> 1.6.0'
289
  gem 'webmock', '~> 1.21.0'
290
  gem 'test_after_commit', '~> 0.4.2'
Jared Szechy committed
291
  gem 'sham_rack'
gitlabhq committed
292
end
293 294

group :production do
295
  gem "gitlab_meta", '7.0'
296
end
297

298
gem "newrelic_rpm", '~> 3.9.4.245'
299
gem 'newrelic-grape'
Valery Sizov committed
300

301
gem 'octokit', '~> 3.7.0'
Douwe Maan committed
302

303
gem "mail_room", "~> 0.6.1"
Douwe Maan committed
304

305 306 307 308 309 310 311 312 313 314 315 316
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"