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

F
Ferdinand Rosario 已提交
3
gem 'rails', '4.1.14'
4

5 6 7 8
# 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 已提交
9 10 11
# Default values for AR models
gem "default_value_for", "~> 3.0.0"

D
Dmitriy Zaporozhets 已提交
12
# Supported DBs
D
Douwe Maan 已提交
13 14
gem "mysql2", '~> 0.3.16', group: :mysql
gem "pg", '~> 0.18.2', group: :postgres
D
Dmitriy Zaporozhets 已提交
15

K
karen Carias 已提交
16
# Authentication libraries
17 18
gem 'devise',                 '~> 3.5.2'
gem 'devise-async',           '~> 0.9.0'
19
gem 'doorkeeper',             '~> 2.1.3'
20 21
gem 'omniauth',               '~> 1.2.2'
gem 'omniauth-bitbucket',     '~> 0.0.2'
D
Douwe Maan 已提交
22
gem 'omniauth-facebook',      '~> 3.0.0'
23 24
gem 'omniauth-github',        '~> 1.1.1'
gem 'omniauth-gitlab',        '~> 1.0.0'
25
gem 'omniauth-google-oauth2', '~> 0.2.0'
26
gem 'omniauth-kerberos',      '~> 0.3.0', group: :kerberos
27
gem 'omniauth-saml',          '~> 1.4.0'
28
gem 'omniauth-shibboleth',    '~> 1.2.0'
29
gem 'omniauth-twitter',       '~> 1.2.0'
V
Valery Sizov 已提交
30
gem 'omniauth_crowd'
R
Robert Speicher 已提交
31
gem 'rack-oauth2',            '~> 1.2.1'
D
Dmitriy Zaporozhets 已提交
32

33
# Two-factor authentication
34
gem 'devise-two-factor', '~> 2.0.0'
D
Douwe Maan 已提交
35 36
gem 'rqrcode-rails3', '~> 0.1.7'
gem 'attr_encrypted', '~> 1.3.4'
37

38
# Browser detection
39
gem "browser", '~> 1.0.0'
40

D
Dmitriy Zaporozhets 已提交
41
# Extracting information from a git repository
D
Dmitriy Zaporozhets 已提交
42
# Provide access to Gitlab::Git library
43
gem "gitlab_git", '~> 7.2.20'
44

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

50
# Git Wiki
V
Valery Sizov 已提交
51
gem 'gollum-lib', '~> 4.0.2'
52

V
Valeriy Sizov 已提交
53
# Language detection
54
gem "github-linguist", "~> 4.7.0", require: "linguist"
V
Valeriy Sizov 已提交
55

R
randx 已提交
56
# API
K
Kamil Trzcinski 已提交
57
gem 'grape',        '~> 0.13.0'
R
Robert Speicher 已提交
58 59
gem 'grape-entity', '~> 0.4.2'
gem 'rack-cors',    '~> 0.4.0', require: 'rack/cors'
R
randx 已提交
60 61 62

# Format dates and times
# based on human-friendly examples
R
Robert Speicher 已提交
63
gem "stamp", '~> 0.6.0'
R
randx 已提交
64

A
Andrew8xx8 已提交
65
# Enumeration fields
D
Douwe Maan 已提交
66
gem 'enumerize', '~> 0.7.0'
A
Andrew8xx8 已提交
67

R
randx 已提交
68
# Pagination
69
gem "kaminari", "~> 0.16.3"
R
randx 已提交
70 71

# HAML
R
Robert Speicher 已提交
72
gem "haml-rails", '~> 0.9.0'
R
randx 已提交
73 74

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

77
# Drag and Drop UI
D
Douwe Maan 已提交
78
gem 'dropzonejs-rails', '~> 0.7.1'
79

80
# for aws storage
81
gem "fog", "~> 1.25.0"
D
Douwe Maan 已提交
82
gem "unf", '~> 0.1.4'
R
randx 已提交
83 84

# Authorization
D
Douwe Maan 已提交
85
gem "six", '~> 0.2.0'
R
randx 已提交
86 87

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

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

S
skv-headless 已提交
102 103 104
# Diffs
gem 'diffy', '~> 3.0.3'

105
# Application server
J
Jacob Vosmaer 已提交
106
group :unicorn do
D
Douwe Maan 已提交
107 108
  gem "unicorn", '~> 4.8.2'
  gem 'unicorn-worker-killer', '~> 0.4.2'
J
Jacob Vosmaer 已提交
109
end
R
randx 已提交
110

A
Andrew8xx8 已提交
111
# State machine
112
gem "state_machines-activerecord", '~> 0.3.0'
113 114
# Run events after state machine commits
gem 'after_commit_queue'
A
Andrew8xx8 已提交
115

R
randx 已提交
116
# Issue tags
N
Nihad Abbasov 已提交
117
gem 'acts-as-taggable-on', '~> 3.4'
R
randx 已提交
118 119

# Background jobs
D
Douwe Maan 已提交
120
gem 'sinatra', '~> 1.4.4', require: nil
121
gem 'sidekiq', '3.3.0'
D
Douwe Maan 已提交
122
gem 'sidetiq', '~> 0.6.3'
R
randx 已提交
123 124

# HTTP requests
D
Douwe Maan 已提交
125
gem "httparty", '~> 0.13.3'
R
randx 已提交
126 127

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

R
Riyad Preukschas 已提交
130
# GitLab settings
D
Douwe Maan 已提交
131
gem 'settingslogic', '~> 2.0.9'
A
Aleksei Kvitinskii 已提交
132

R
randx 已提交
133
# Misc
D
Douwe Maan 已提交
134 135

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

137
# Cache
D
Douwe Maan 已提交
138
gem "redis-rails", '~> 4.0.0'
139

140
# Campfire integration
R
Robert Speicher 已提交
141
gem 'tinder', '~> 1.10.0'
142

R
Ronald van Eede 已提交
143
# HipChat integration
C
Chulki Lee 已提交
144
gem 'hipchat', '~> 1.5.0'
R
Ronald van Eede 已提交
145

146
# Flowdock integration
147
gem "gitlab-flowdock-git-hook", "~> 1.0.1"
148

149 150 151
# Gemnasium integration
gem "gemnasium-gitlab-service", "~> 0.2"

152
# Slack integration
153
gem "slack-notifier", "~> 1.2.0"
154

J
Jeremy 已提交
155 156 157
# Asana integration
gem 'asana', '~> 0.0.6'

J
Jared Szechy 已提交
158
# FogBugz integration
J
Jared Szechy 已提交
159
gem 'ruby-fogbugz', '~> 0.2.1'
J
Jared Szechy 已提交
160

161
# d3
R
Robert Speicher 已提交
162
gem 'd3_rails', '~> 3.5.5'
163

164 165 166
#cal-heatmap
gem "cal-heatmap-rails", "~> 0.0.1"

167 168 169
# underscore-rails
gem "underscore-rails", "~> 1.4.4"

170
# Sanitize user input
171
gem "sanitize", '~> 2.0'
172

M
Marin Jankovski 已提交
173
# Protect against bruteforcing
174
gem "rack-attack", '~> 4.3.0'
M
Marin Jankovski 已提交
175

D
Dmitriy Zaporozhets 已提交
176
# Ace editor
D
Douwe Maan 已提交
177
gem 'ace-rails-ap', '~> 2.0.1'
D
Dmitriy Zaporozhets 已提交
178

179
# Keyboard shortcuts
D
Douwe Maan 已提交
180
gem 'mousetrap-rails', '~> 1.4.6'
R
Robert Schilling 已提交
181

182
# Detect and convert string character encoding
183
gem 'charlock_holmes', '~> 0.7.3'
184

185
gem "sass-rails", '~> 4.0.5'
D
Douwe Maan 已提交
186
gem "coffee-rails", '~> 4.1.0'
R
Robert Speicher 已提交
187
gem "uglifier", '~> 2.7.2'
R
Robert Speicher 已提交
188
gem 'turbolinks', '~> 2.5.0'
D
Douwe Maan 已提交
189
gem 'jquery-turbolinks', '~> 2.0.1'
190

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

N
Nihad Abbasov 已提交
206
group :development do
D
Douwe Maan 已提交
207
  gem "foreman"
D
Dmitriy Zaporozhets 已提交
208
  gem 'brakeman', '3.0.1', require: false
D
Douwe Maan 已提交
209 210 211 212

  gem "annotate", "~> 2.6.0"
  gem "letter_opener", '~> 1.1.2'
  gem 'quiet_assets', '~> 1.0.2'
213
  gem 'rerun', '~> 0.10.0'
Y
Yorick Peterse 已提交
214
  gem 'bullet', require: false
215
  gem 'rblineprof', platform: :mri, require: false
D
Dmitriy Zaporozhets 已提交
216

217
  # Better errors handler
D
Douwe Maan 已提交
218 219
  gem 'better_errors', '~> 1.0.1'
  gem 'binding_of_caller', '~> 0.7.2'
220 221

  # Docs generator
D
Douwe Maan 已提交
222
  gem "sdoc", '~> 0.3.20'
223 224

  # thin instead webrick
D
Douwe Maan 已提交
225
  gem 'thin', '~> 1.6.1'
G
gitlabhq 已提交
226 227 228
end

group :development, :test do
Y
Yorick Peterse 已提交
229
  gem 'byebug', platform: :mri
R
Robert Speicher 已提交
230 231
  gem 'pry-rails'

D
Douwe Maan 已提交
232 233 234
  gem 'awesome_print', '~> 1.2.0'
  gem 'fuubar', '~> 2.0.0'

235
  gem 'database_cleaner', '~> 1.4.0'
D
Douwe Maan 已提交
236
  gem 'factory_girl_rails', '~> 4.3.0'
237
  gem 'rspec-rails',      '~> 3.3.0'
D
Douwe Maan 已提交
238
  gem 'spinach-rails', '~> 0.2.1'
R
randx 已提交
239

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

243
  # Generate Fake data
R
Robert Speicher 已提交
244
  gem 'ffaker', '~> 2.0.0'
245

R
Robert Speicher 已提交
246
  gem 'capybara',            '~> 2.4.0'
R
Robert Speicher 已提交
247 248
  gem 'capybara-screenshot', '~> 1.0.0'
  gem 'poltergeist',         '~> 1.6.0'
A
Andrew8xx8 已提交
249

250
  gem 'teaspoon', '~> 1.0.0'
D
Douwe Maan 已提交
251
  gem 'teaspoon-jasmine', '~> 2.2.0'
J
Jeroen van Baarsen 已提交
252

D
Douwe Maan 已提交
253 254
  gem 'spring', '~> 1.3.6'
  gem 'spring-commands-rspec',    '~> 1.0.4'
255 256
  gem 'spring-commands-spinach',  '~> 1.0.0'
  gem 'spring-commands-teaspoon', '~> 0.0.2'
D
Douwe Maan 已提交
257 258 259 260

  gem 'rubocop',  '~> 0.28.0',  require: false
  gem 'coveralls',  '~> 0.8.2', require: false
  gem 'simplecov', '~> 0.10.0', require: false
261
  gem 'flog', require: false
262
  gem 'flay', require: false
D
Dmitriy Zaporozhets 已提交
263
  gem 'bundler-audit', require: false
264 265

  gem 'benchmark-ips', require: false
G
gitlabhq 已提交
266 267 268
end

group :test do
R
Robert Speicher 已提交
269
  gem 'shoulda-matchers', '~> 2.8.0', require: false
R
Robert Speicher 已提交
270
  gem 'email_spec', '~> 1.6.0'
271
  gem 'webmock', '~> 1.21.0'
D
Douwe Maan 已提交
272
  gem 'test_after_commit', '~> 0.2.2'
J
Jared Szechy 已提交
273
  gem 'sham_rack'
G
gitlabhq 已提交
274
end
275 276

group :production do
D
Dmitriy Zaporozhets 已提交
277
  gem "gitlab_meta", '7.0'
278
end
J
Jacob Vosmaer 已提交
279

D
Douwe Maan 已提交
280
gem "newrelic_rpm", '~> 3.9.4.245'
J
Jacob Vosmaer 已提交
281
gem 'newrelic-grape'
V
Valery Sizov 已提交
282

D
Douwe Maan 已提交
283
gem 'octokit', '~> 3.7.0'
D
Douwe Maan 已提交
284

285
gem "mail_room", "~> 0.6.1"
D
Douwe Maan 已提交
286

D
Douwe Maan 已提交
287 288 289 290 291 292 293 294 295 296 297 298
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"