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

V
Valery Sizov 已提交
3
gem 'rails', '4.2.4'
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.3'
22
gem 'devise-async',           '~> 0.9.0'
R
Robert Speicher 已提交
23
gem 'doorkeeper',             '~> 2.2.0'
24 25
gem 'omniauth',               '~> 1.2.2'
gem 'omniauth-bitbucket',     '~> 0.0.2'
T
tduehr 已提交
26
gem 'omniauth-cas3',          '~> 1.1.2'
D
Douwe Maan 已提交
27
gem 'omniauth-facebook',      '~> 3.0.0'
28 29
gem 'omniauth-github',        '~> 1.1.1'
gem 'omniauth-gitlab',        '~> 1.0.0'
30
gem 'omniauth-google-oauth2', '~> 0.2.0'
31
gem 'omniauth-kerberos',      '~> 0.3.0', group: :kerberos
32
gem 'omniauth-saml',          '~> 1.4.0'
33
gem 'omniauth-shibboleth',    '~> 1.2.0'
34
gem 'omniauth-twitter',       '~> 1.2.0'
V
Valery Sizov 已提交
35
gem 'omniauth_crowd'
R
Robert Speicher 已提交
36
gem 'rack-oauth2',            '~> 1.2.1'
D
Dmitriy Zaporozhets 已提交
37

38
# Two-factor authentication
39
gem 'devise-two-factor', '~> 2.0.0'
D
Douwe Maan 已提交
40 41
gem 'rqrcode-rails3', '~> 0.1.7'
gem 'attr_encrypted', '~> 1.3.4'
42

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

D
Dmitriy Zaporozhets 已提交
46
# Extracting information from a git repository
D
Dmitriy Zaporozhets 已提交
47
# Provide access to Gitlab::Git library
48
gem "gitlab_git", '~> 7.2.20'
49

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

55
# Git Wiki
56
gem 'gollum-lib', '~> 4.1.0'
57

V
Valeriy Sizov 已提交
58
# Language detection
59
gem "github-linguist", "~> 4.7.0", require: "linguist"
V
Valeriy Sizov 已提交
60

R
randx 已提交
61
# API
K
Kamil Trzcinski 已提交
62
gem 'grape',        '~> 0.13.0'
R
Robert Speicher 已提交
63 64
gem 'grape-entity', '~> 0.4.2'
gem 'rack-cors',    '~> 0.4.0', require: 'rack/cors'
R
randx 已提交
65 66 67

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

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

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

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

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

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

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

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

R
Robert Speicher 已提交
92
# Markdown and HTML processing
93
gem 'html-pipeline', '~> 1.11.0'
D
Douwe Maan 已提交
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'
R
Robert Speicher 已提交
98
gem 'rdoc',          '~>3.6'
D
Douwe Maan 已提交
99
gem 'org-ruby',      '~> 0.9.12'
R
Robert Speicher 已提交
100
gem 'creole',        '~> 0.5.0'
V
Valery Sizov 已提交
101
gem 'wikicloth',     '0.8.1'
102
gem 'asciidoctor',   '~> 1.5.2'
103
gem 'rouge',         '~> 1.10.1'
R
randx 已提交
104

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

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

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

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

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

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

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

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

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

R
randx 已提交
140
# Misc
D
Douwe Maan 已提交
141 142

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

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

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

R
Ronald van Eede 已提交
150
# HipChat integration
C
Chulki Lee 已提交
151
gem 'hipchat', '~> 1.5.0'
R
Ronald van Eede 已提交
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

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

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

168
# d3
R
Robert Speicher 已提交
169
gem 'd3_rails', '~> 3.5.5'
170

171 172 173
#cal-heatmap
gem "cal-heatmap-rails", "~> 0.0.1"

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

M
Marin Jankovski 已提交
181
# Protect against bruteforcing
182
gem "rack-attack", '~> 4.3.1'
M
Marin Jankovski 已提交
183

D
Dmitriy Zaporozhets 已提交
184
# Ace editor
D
Douwe Maan 已提交
185
gem 'ace-rails-ap', '~> 2.0.1'
D
Dmitriy Zaporozhets 已提交
186

187
# Keyboard shortcuts
D
Douwe Maan 已提交
188
gem 'mousetrap-rails', '~> 1.4.6'
R
Robert Schilling 已提交
189

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

R
Robert Speicher 已提交
193
gem "sass-rails", '~> 5.0.0'
D
Douwe Maan 已提交
194
gem "coffee-rails", '~> 4.1.0'
R
Robert Speicher 已提交
195
gem "uglifier", '~> 2.7.2'
R
Robert Speicher 已提交
196
gem 'turbolinks', '~> 2.5.0'
197
gem 'jquery-turbolinks', '~> 2.1.0'
198

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

N
Nihad Abbasov 已提交
215
group :development do
D
Douwe Maan 已提交
216
  gem "foreman"
D
Dmitriy Zaporozhets 已提交
217
  gem 'brakeman', '3.0.1', require: false
D
Douwe Maan 已提交
218 219 220 221

  gem "annotate", "~> 2.6.0"
  gem "letter_opener", '~> 1.1.2'
  gem 'quiet_assets', '~> 1.0.2'
222
  gem 'rerun', '~> 0.11.0'
Y
Yorick Peterse 已提交
223
  gem 'bullet', require: false
224
  gem 'rblineprof', platform: :mri, require: false
V
Valery Sizov 已提交
225
  gem 'web-console', '~> 2.0'
D
Dmitriy Zaporozhets 已提交
226

227
  # Better errors handler
D
Douwe Maan 已提交
228 229
  gem 'better_errors', '~> 1.0.1'
  gem 'binding_of_caller', '~> 0.7.2'
230 231

  # Docs generator
D
Douwe Maan 已提交
232
  gem "sdoc", '~> 0.3.20'
233 234

  # thin instead webrick
D
Douwe Maan 已提交
235
  gem 'thin', '~> 1.6.1'
G
gitlabhq 已提交
236 237 238
end

group :development, :test do
Y
Yorick Peterse 已提交
239
  gem 'byebug', platform: :mri
R
Robert Speicher 已提交
240 241
  gem 'pry-rails'

D
Douwe Maan 已提交
242 243 244
  gem 'awesome_print', '~> 1.2.0'
  gem 'fuubar', '~> 2.0.0'

245
  gem 'database_cleaner', '~> 1.4.0'
D
Douwe Maan 已提交
246
  gem 'factory_girl_rails', '~> 4.3.0'
247
  gem 'rspec-rails',      '~> 3.3.0'
D
Douwe Maan 已提交
248
  gem 'spinach-rails', '~> 0.2.1'
R
randx 已提交
249

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

253
  # Generate Fake data
R
Robert Speicher 已提交
254
  gem 'ffaker', '~> 2.0.0'
255

R
Robert Speicher 已提交
256
  gem 'capybara',            '~> 2.4.0'
R
Robert Speicher 已提交
257
  gem 'capybara-screenshot', '~> 1.0.0'
258
  gem 'poltergeist',         '~> 1.8.1'
A
Andrew8xx8 已提交
259

260
  gem 'teaspoon', '~> 1.0.0'
D
Douwe Maan 已提交
261
  gem 'teaspoon-jasmine', '~> 2.2.0'
J
Jeroen van Baarsen 已提交
262

D
Douwe Maan 已提交
263 264
  gem 'spring', '~> 1.3.6'
  gem 'spring-commands-rspec',    '~> 1.0.4'
265 266
  gem 'spring-commands-spinach',  '~> 1.0.0'
  gem 'spring-commands-teaspoon', '~> 0.0.2'
D
Douwe Maan 已提交
267

268
  gem 'rubocop', '~> 0.35.0', require: false
D
Douwe Maan 已提交
269 270
  gem 'coveralls',  '~> 0.8.2', require: false
  gem 'simplecov', '~> 0.10.0', require: false
271
  gem 'flog', require: false
272
  gem 'flay', require: false
D
Dmitriy Zaporozhets 已提交
273
  gem 'bundler-audit', require: false
274 275

  gem 'benchmark-ips', require: false
G
gitlabhq 已提交
276 277 278
end

group :test do
R
Robert Speicher 已提交
279
  gem 'shoulda-matchers', '~> 2.8.0', require: false
R
Robert Speicher 已提交
280
  gem 'email_spec', '~> 1.6.0'
281
  gem 'webmock', '~> 1.21.0'
282
  gem 'test_after_commit', '~> 0.4.2'
J
Jared Szechy 已提交
283
  gem 'sham_rack'
G
gitlabhq 已提交
284
end
285 286

group :production do
D
Dmitriy Zaporozhets 已提交
287
  gem "gitlab_meta", '7.0'
288
end
J
Jacob Vosmaer 已提交
289

D
Douwe Maan 已提交
290
gem "newrelic_rpm", '~> 3.9.4.245'
J
Jacob Vosmaer 已提交
291
gem 'newrelic-grape'
V
Valery Sizov 已提交
292

D
Douwe Maan 已提交
293
gem 'octokit', '~> 3.7.0'
D
Douwe Maan 已提交
294

295
gem "mail_room", "~> 0.6.1"
D
Douwe Maan 已提交
296

D
Douwe Maan 已提交
297 298 299 300 301 302 303 304 305 306 307 308
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"