BigW Consortium Gitlab

Gemfile 6.94 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 22
gem 'devise',                 '~> 3.5.2'
gem 'devise-async',           '~> 0.9.0'
23
gem 'doorkeeper',             '~> 2.2.0'
24 25
gem 'omniauth',               '~> 1.2.2'
gem 'omniauth-bitbucket',     '~> 0.0.2'
26
gem 'omniauth-facebook',      '~> 3.0.0'
27 28
gem 'omniauth-github',        '~> 1.1.1'
gem 'omniauth-gitlab',        '~> 1.0.0'
29
gem 'omniauth-google-oauth2', '~> 0.2.0'
30
gem 'omniauth-kerberos',      '~> 0.3.0', group: :kerberos
31
gem 'omniauth-saml',          '~> 1.4.0'
32
gem 'omniauth-shibboleth',    '~> 1.2.0'
33
gem 'omniauth-twitter',       '~> 1.2.0'
Valery Sizov committed
34
gem 'omniauth_crowd'
35
gem 'rack-oauth2',            '~> 1.2.1'
36

37
# Two-factor authentication
38
gem 'devise-two-factor', '~> 2.0.0'
39 40
gem 'rqrcode-rails3', '~> 0.1.7'
gem 'attr_encrypted', '~> 1.3.4'
41

42
# Browser detection
43
gem "browser", '~> 1.0.0'
44

45
# Extracting information from a git repository
46
# Provide access to Gitlab::Git library
47
gem "gitlab_git", '~> 7.2.20'
48

49
# LDAP Auth
50
# GitLab fork with several improvements to original library. For full list of changes
51
# see https://github.com/intridea/omniauth-ldap/compare/master...gitlabhq:master
52
gem 'gitlab_omniauth-ldap', '~> 1.2.1', require: "omniauth-ldap"
53

54
# Git Wiki
Valery Sizov committed
55
gem 'gollum-lib', '~> 4.0.2'
56

57
# Language detection
58
gem "github-linguist", "~> 4.7.0", require: "linguist"
59

randx committed
60
# API
61
gem 'grape',        '~> 0.13.0'
62 63
gem 'grape-entity', '~> 0.4.2'
gem 'rack-cors',    '~> 0.4.0', require: 'rack/cors'
randx committed
64 65 66

# Format dates and times
# based on human-friendly examples
67
gem "stamp", '~> 0.6.0'
randx committed
68 69

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

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

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

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

81
# for aws storage
82
gem "fog", "~> 1.25.0"
83
gem "unf", '~> 0.1.4'
randx committed
84 85

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

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

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

skv-headless committed
104 105 106
# Diffs
gem 'diffy', '~> 3.0.3'

107
# Application server
108
group :unicorn do
109 110
  gem "unicorn", '~> 4.8.2'
  gem 'unicorn-worker-killer', '~> 0.4.2'
111
end
randx committed
112

Andrew8xx8 committed
113
# State machine
114
gem "state_machines-activerecord", '~> 0.3.0'
115 116
# Run events after state machine commits
gem 'after_commit_queue'
Andrew8xx8 committed
117

randx committed
118
# Issue tags
119
gem 'acts-as-taggable-on', '~> 3.4'
randx committed
120 121

# Background jobs
122
gem 'sinatra', '~> 1.4.4', require: nil
123
gem 'sidekiq', '3.3.0'
124
gem 'sidetiq', '~> 0.6.3'
randx committed
125 126

# HTTP requests
127
gem "httparty", '~> 0.13.3'
randx committed
128 129

# Colored output to console
130
gem "colorize", '~> 0.7.0'
randx committed
131

Riyad Preukschas committed
132
# GitLab settings
133
gem 'settingslogic', '~> 2.0.9'
134

randx committed
135
# Misc
136 137

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

139
# Cache
140
gem "redis-rails", '~> 4.0.0'
141

142
# Campfire integration
143
gem 'tinder', '~> 1.10.0'
144

145
# HipChat integration
Chulki Lee committed
146
gem 'hipchat', '~> 1.5.0'
147

148
# Flowdock integration
149
gem "gitlab-flowdock-git-hook", "~> 1.0.1"
150

151 152 153
# Gemnasium integration
gem "gemnasium-gitlab-service", "~> 0.2"

154
# Slack integration
155
gem "slack-notifier", "~> 1.2.0"
156

Jeremy committed
157
# Asana integration
158
gem 'asana', '~> 0.4.0'
Jeremy committed
159

Jared Szechy committed
160
# FogBugz integration
Jared Szechy committed
161
gem 'ruby-fogbugz', '~> 0.2.1'
Jared Szechy committed
162

163
# d3
Robert Speicher committed
164
gem 'd3_rails', '~> 3.5.5'
165

166 167 168
#cal-heatmap
gem "cal-heatmap-rails", "~> 0.0.1"

169 170 171
# underscore-rails
gem "underscore-rails", "~> 1.4.4"

172
# Sanitize user input
173
gem "sanitize", '~> 2.0'
174

Marin Jankovski committed
175
# Protect against bruteforcing
176
gem "rack-attack", '~> 4.3.0'
Marin Jankovski committed
177

178
# Ace editor
179
gem 'ace-rails-ap', '~> 2.0.1'
180

181
# Keyboard shortcuts
182
gem 'mousetrap-rails', '~> 1.4.6'
183

184
# Detect and convert string character encoding
185
gem 'charlock_holmes', '~> 0.7.3'
186

187
gem "sass-rails", '~> 4.0.5'
188
gem "coffee-rails", '~> 4.1.0'
189
gem "uglifier", '~> 2.7.2'
190
gem 'turbolinks', '~> 2.5.0'
191
gem 'jquery-turbolinks', '~> 2.1.0'
192

193
gem 'addressable',        '~> 2.3.8'
194 195 196
gem 'bootstrap-sass',     '~> 3.0'
gem 'font-awesome-rails', '~> 4.2'
gem 'gitlab_emoji',       '~> 0.1'
Robert Speicher committed
197
gem 'gon',                '~> 6.0.1'
198
gem 'jquery-atwho-rails', '~> 1.3.2'
199 200 201
gem 'jquery-rails',       '~> 3.1.3'
gem 'jquery-scrollto-rails', '~> 1.4.3'
gem 'jquery-ui-rails',    '~> 4.2.1'
202
gem 'nprogress-rails',    '~> 0.1.6.7'
203
gem 'raphael-rails',      '~> 2.1.2'
204
gem 'request_store',      '~> 1.2.0'
205
gem 'select2-rails',      '~> 3.5.9'
206
gem 'virtus',             '~> 1.0.1'
gitlabhq committed
207

Nihad Abbasov committed
208
group :development do
209
  gem "foreman"
Dmitriy Zaporozhets committed
210
  gem 'brakeman', '3.0.1', require: false
211 212 213 214

  gem "annotate", "~> 2.6.0"
  gem "letter_opener", '~> 1.1.2'
  gem 'quiet_assets', '~> 1.0.2'
215
  gem 'rerun', '~> 0.10.0'
216
  gem 'bullet', require: false
217
  gem 'rblineprof', platform: :mri, require: false
Valery Sizov committed
218
  gem 'web-console', '~> 2.0'
219

220
  # Better errors handler
221 222
  gem 'better_errors', '~> 1.0.1'
  gem 'binding_of_caller', '~> 0.7.2'
223 224

  # Docs generator
225
  gem "sdoc", '~> 0.3.20'
226 227

  # thin instead webrick
228
  gem 'thin', '~> 1.6.1'
gitlabhq committed
229 230 231
end

group :development, :test do
232
  gem 'byebug', platform: :mri
Robert Speicher committed
233 234
  gem 'pry-rails'

235 236 237
  gem 'awesome_print', '~> 1.2.0'
  gem 'fuubar', '~> 2.0.0'

238
  gem 'database_cleaner', '~> 1.4.0'
239
  gem 'factory_girl_rails', '~> 4.3.0'
240
  gem 'rspec-rails',      '~> 3.3.0'
241
  gem 'spinach-rails', '~> 0.2.1'
randx committed
242

243
  # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
244
  gem 'minitest', '~> 5.7.0'
245

246
  # Generate Fake data
Robert Speicher committed
247
  gem 'ffaker', '~> 2.0.0'
248

249
  gem 'capybara',            '~> 2.4.0'
Robert Speicher committed
250 251
  gem 'capybara-screenshot', '~> 1.0.0'
  gem 'poltergeist',         '~> 1.6.0'
Andrew8xx8 committed
252

253
  gem 'teaspoon', '~> 1.0.0'
254
  gem 'teaspoon-jasmine', '~> 2.2.0'
255

256 257
  gem 'spring', '~> 1.3.6'
  gem 'spring-commands-rspec',    '~> 1.0.4'
258 259
  gem 'spring-commands-spinach',  '~> 1.0.0'
  gem 'spring-commands-teaspoon', '~> 0.0.2'
260 261 262 263

  gem 'rubocop',  '~> 0.28.0',  require: false
  gem 'coveralls',  '~> 0.8.2', require: false
  gem 'simplecov', '~> 0.10.0', require: false
264
  gem 'flog', require: false
265
  gem 'flay', require: false
266
  gem 'bundler-audit', require: false
267 268

  gem 'benchmark-ips', require: false
gitlabhq committed
269 270 271
end

group :test do
272
  gem 'shoulda-matchers', '~> 2.8.0', require: false
273
  gem 'email_spec', '~> 1.6.0'
274
  gem 'webmock', '~> 1.21.0'
275
  gem 'test_after_commit', '~> 0.4.2'
Jared Szechy committed
276
  gem 'sham_rack'
gitlabhq committed
277
end
278 279

group :production do
280
  gem "gitlab_meta", '7.0'
281
end
282

283
gem "newrelic_rpm", '~> 3.9.4.245'
284
gem 'newrelic-grape'
Valery Sizov committed
285

286
gem 'octokit', '~> 3.7.0'
Douwe Maan committed
287

288
gem "mail_room", "~> 0.6.1"
Douwe Maan committed
289

290 291 292 293 294 295 296 297 298 299 300 301
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"