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

3
gem 'rails', '4.1.11'
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
13 14
gem "mysql2", group: :mysql
gem "pg", group: :postgres
D
Dmitriy Zaporozhets 已提交
15

K
karen Carias 已提交
16
# Authentication libraries
M
Marin Jankovski 已提交
17 18
gem "devise", '3.2.4'
gem "devise-async", '0.9.0'
19
gem 'omniauth', "~> 1.2.2"
F
Florian Unglaub 已提交
20 21 22
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem 'omniauth-github'
23
gem 'omniauth-shibboleth'
24
gem 'omniauth-kerberos', group: :kerberos
V
Valery Sizov 已提交
25
gem 'omniauth-gitlab'
D
Douwe Maan 已提交
26
gem 'omniauth-bitbucket'
R
Robert Speicher 已提交
27
gem 'omniauth-saml', '~> 1.4.0'
V
Valery Sizov 已提交
28
gem 'doorkeeper', '2.1.3'
V
Valery Sizov 已提交
29
gem "rack-oauth2", "~> 1.0.5"
D
Dmitriy Zaporozhets 已提交
30

31 32 33
# Two-factor authentication
gem 'devise-two-factor'
gem 'rqrcode-rails3'
D
Dmitriy Zaporozhets 已提交
34
gem 'attr_encrypted', '1.3.4'
35

36
# Browser detection
37
gem "browser", '~> 0.8.0'
38

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

D
Dmitriy Zaporozhets 已提交
43
# Ruby/Rack Git Smart-HTTP Server Handler
44 45
# GitLab fork with a lot of changes (improved thread-safety, better memory usage etc)
# For full list of changes see https://github.com/SaitoWu/grack/compare/master...gitlabhq:master
M
Marin Jankovski 已提交
46
gem 'gitlab-grack', '~> 2.0.2', require: 'grack'
D
Dmitriy Zaporozhets 已提交
47

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

53
# Git Wiki
V
Valery Sizov 已提交
54
gem 'gollum-lib', '~> 4.0.2'
55

V
Valeriy Sizov 已提交
56
# Language detection
Y
Yorick Peterse 已提交
57 58 59
# GitLab fork of linguist does not require pygments/python dependency.
# New version of original gem also dropped pygments support but it has strict
# dependency to unstable rugged version. We have internal issue for replacing
60
# fork with original gem when we meet on same rugged version - https://dev.gitlab.org/gitlab/gitlabhq/issues/2052.
V
Valery Sizov 已提交
61
gem "gitlab-linguist", "~> 3.0.1", require: "linguist"
V
Valeriy Sizov 已提交
62

R
randx 已提交
63
# API
J
Jeroen van Baarsen 已提交
64
gem "grape", "~> 0.6.1"
D
Dmitriy Zaporozhets 已提交
65
gem "grape-entity", "~> 0.4.2"
66
gem 'rack-cors', require: 'rack/cors'
R
randx 已提交
67 68 69

# Format dates and times
# based on human-friendly examples
S
Saito 已提交
70
gem "stamp"
R
randx 已提交
71

A
Andrew8xx8 已提交
72 73 74
# Enumeration fields
gem 'enumerize'

R
randx 已提交
75
# Pagination
D
Dmitriy Zaporozhets 已提交
76
gem "kaminari", "~> 0.15.1"
R
randx 已提交
77 78

# HAML
79
gem "haml-rails"
R
randx 已提交
80 81

# Files attachments
82
gem "carrierwave"
83

84 85 86
# Drag and Drop UI
gem 'dropzonejs-rails'

87
# for aws storage
88
gem "fog", "~> 1.25.0"
89
gem "unf"
R
randx 已提交
90 91

# Authorization
S
Saito 已提交
92
gem "six"
R
randx 已提交
93 94

# Seed data
D
Dmitriy Zaporozhets 已提交
95
gem "seed-fu"
R
randx 已提交
96

R
Robert Speicher 已提交
97
# Markdown and HTML processing
98
gem 'html-pipeline', '~> 1.11.0'
99
gem 'task_list',     '1.0.2', require: 'task_list/railtie'
R
Robert Speicher 已提交
100
gem 'github-markup'
R
Robert Speicher 已提交
101
gem 'redcarpet',     '~> 3.3.2'
R
Robert Schilling 已提交
102
gem 'RedCloth'
R
Robert Speicher 已提交
103 104 105 106
gem 'rdoc',          '~>3.6'
gem 'org-ruby',      '= 0.9.12'
gem 'creole',        '~>0.3.6'
gem 'wikicloth',     '=0.8.1'
107
gem 'asciidoctor',   '~> 1.5.2'
R
randx 已提交
108

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

112
# Application server
J
Jacob Vosmaer 已提交
113 114 115 116
group :unicorn do
  gem "unicorn", '~> 4.6.3'
  gem 'unicorn-worker-killer'
end
R
randx 已提交
117

A
Andrew8xx8 已提交
118 119 120
# State machine
gem "state_machine"

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

# Background jobs
D
sidekiq  
Dmitriy Zaporozhets 已提交
125
gem 'slim'
D
Dmitriy Zaporozhets 已提交
126
gem 'sinatra', require: nil
V
Vinnie Okada 已提交
127
gem 'sidekiq', '~> 3.3'
V
Vinnie Okada 已提交
128
gem 'sidetiq', '0.6.3'
R
randx 已提交
129 130

# HTTP requests
A
Ariejan de Vroom 已提交
131
gem "httparty"
R
randx 已提交
132 133

# Colored output to console
134
gem "colored"
R
randx 已提交
135

R
Riyad Preukschas 已提交
136
# GitLab settings
137
gem 'settingslogic'
A
Aleksei Kvitinskii 已提交
138

R
randx 已提交
139 140
# Misc
gem "foreman"
R
Robert Speicher 已提交
141
gem 'version_sorter'
R
randx 已提交
142

143 144 145
# Cache
gem "redis-rails"

146 147 148
# Campfire integration
gem 'tinder', '~> 1.9.2'

R
Ronald van Eede 已提交
149
# HipChat integration
C
Chulki Lee 已提交
150
gem 'hipchat', '~> 1.5.0'
R
Ronald van Eede 已提交
151

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

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

158
# Slack integration
159
gem "slack-notifier", "~> 1.0.0"
160

J
Jeremy 已提交
161 162 163
# Asana integration
gem 'asana', '~> 0.0.6'

164
# d3
R
Robert Speicher 已提交
165
gem 'd3_rails', '~> 3.5.5'
166

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

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

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

M
Marin Jankovski 已提交
176
# Protect against bruteforcing
177
gem "rack-attack", '~> 4.3.0'
M
Marin Jankovski 已提交
178

D
Dmitriy Zaporozhets 已提交
179 180 181
# Ace editor
gem 'ace-rails-ap'

182
# Keyboard shortcuts
R
Robert Schilling 已提交
183 184
gem 'mousetrap-rails'

185 186 187
# Detect and convert string character encoding
gem 'charlock_holmes'

188
gem "sass-rails", '~> 4.0.5'
189 190
gem "coffee-rails"
gem "uglifier"
R
Robert Speicher 已提交
191
gem 'turbolinks', '~> 2.5.0'
192 193
gem 'jquery-turbolinks'

R
Robert Speicher 已提交
194 195 196 197 198
gem 'addressable'
gem 'bootstrap-sass',     '~> 3.0'
gem 'font-awesome-rails', '~> 4.2'
gem 'gitlab_emoji',       '~> 0.1'
gem 'gon',                '~> 5.0.0'
R
Robert Speicher 已提交
199
gem 'jquery-atwho-rails', '~> 1.0.0'
R
Robert Speicher 已提交
200
gem 'jquery-rails',       '3.1.3'
R
Robert Speicher 已提交
201 202
gem 'jquery-scrollto-rails'
gem 'jquery-ui-rails'
203
gem 'nprogress-rails'
R
Robert Speicher 已提交
204
gem 'raphael-rails',      '~> 2.1.2'
S
skv-headless 已提交
205
gem 'request_store'
R
Robert Speicher 已提交
206
gem 'select2-rails',      '~> 3.5.9'
R
Robert Speicher 已提交
207
gem 'virtus'
G
gitlabhq 已提交
208

N
Nihad Abbasov 已提交
209
group :development do
D
Dmitriy Zaporozhets 已提交
210
  gem 'brakeman', require: false
D
Dmitriy Zaporozhets 已提交
211
  gem "annotate", "~> 2.6.0.beta2"
212
  gem "letter_opener"
R
Riyad Preukschas 已提交
213
  gem 'quiet_assets', '~> 1.0.1'
214
  gem 'rack-mini-profiler', require: false
215
  gem 'rerun', '~> 0.10.0'
D
Dmitriy Zaporozhets 已提交
216

217 218 219
  # Better errors handler
  gem 'better_errors'
  gem 'binding_of_caller'
220 221 222

  # Docs generator
  gem "sdoc"
223 224 225

  # thin instead webrick
  gem 'thin'
G
gitlabhq 已提交
226 227 228
end

group :development, :test do
R
Robert Speicher 已提交
229
  gem 'awesome_print'
Y
Yorick Peterse 已提交
230
  gem 'byebug', platform: :mri
R
Robert Speicher 已提交
231
  gem 'fuubar', '~> 2.0.0'
R
Robert Speicher 已提交
232 233
  gem 'pry-rails'

234
  gem 'coveralls',        '~> 0.8.2', require: false
235
  gem 'database_cleaner', '~> 1.4.0'
R
Robert Speicher 已提交
236
  gem 'factory_girl_rails'
237 238
  gem 'rspec-rails',      '~> 3.3.0'
  gem 'rubocop',          '0.28.0',   require: false
239
  gem 'spinach-rails'
R
randx 已提交
240

241
  # Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826)
M
Marin Jankovski 已提交
242
  gem 'minitest', '~> 5.3.0'
243

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

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

251 252
  gem 'teaspoon', '~> 1.0.0'
  gem 'teaspoon-jasmine'
J
Jeroen van Baarsen 已提交
253

254 255 256 257
  gem 'spring', '~> 1.3.1'
  gem 'spring-commands-rspec',    '~> 1.0.0'
  gem 'spring-commands-spinach',  '~> 1.0.0'
  gem 'spring-commands-teaspoon', '~> 0.0.2'
G
gitlabhq 已提交
258 259 260
end

group :test do
261
  gem 'simplecov', require: false
R
Robert Speicher 已提交
262
  gem 'shoulda-matchers', '~> 2.8.0', require: false
R
Robert Speicher 已提交
263
  gem 'email_spec', '~> 1.6.0'
264
  gem 'webmock', '~> 1.21.0'
A
Alex Denisov 已提交
265
  gem 'test_after_commit'
G
gitlabhq 已提交
266
end
267 268

group :production do
D
Dmitriy Zaporozhets 已提交
269
  gem "gitlab_meta", '7.0'
270
end
J
Jacob Vosmaer 已提交
271 272

gem "newrelic_rpm"
V
Valery Sizov 已提交
273 274

gem 'octokit', '3.7.0'
D
Douwe Maan 已提交
275

D
Douwe Maan 已提交
276
gem "mail_room", "~> 0.4.0"
D
Douwe Maan 已提交
277 278

gem 'email_reply_parser'