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

3
gem 'rails', '4.1.11'
4

D
Dmitriy Zaporozhets 已提交
5 6 7
# Default values for AR models
gem "default_value_for", "~> 3.0.0"

D
Dmitriy Zaporozhets 已提交
8
# Supported DBs
9 10
gem "mysql2", group: :mysql
gem "pg", group: :postgres
D
Dmitriy Zaporozhets 已提交
11 12

# Auth
M
Marin Jankovski 已提交
13 14
gem "devise", '3.2.4'
gem "devise-async", '0.9.0'
15
gem 'omniauth', "~> 1.2.2"
F
Florian Unglaub 已提交
16 17 18
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem 'omniauth-github'
19
gem 'omniauth-shibboleth'
20
gem 'omniauth-kerberos', group: :kerberos
V
Valery Sizov 已提交
21
gem 'omniauth-gitlab'
D
Douwe Maan 已提交
22
gem 'omniauth-bitbucket'
A
Alex Lossent 已提交
23
gem 'omniauth-saml'
V
Valery Sizov 已提交
24
gem 'doorkeeper', '2.1.3'
V
Valery Sizov 已提交
25
gem "rack-oauth2", "~> 1.0.5"
D
Dmitriy Zaporozhets 已提交
26

27 28 29
# Two-factor authentication
gem 'devise-two-factor'
gem 'rqrcode-rails3'
D
Dmitriy Zaporozhets 已提交
30
gem 'attr_encrypted', '1.3.4'
31

32
# Browser detection
33
gem "browser", '~> 0.8.0'
34

D
Dmitriy Zaporozhets 已提交
35
# Extracting information from a git repository
D
Dmitriy Zaporozhets 已提交
36
# Provide access to Gitlab::Git library
J
Jacob Vosmaer 已提交
37
gem "gitlab_git", '~> 7.2.5'
38

D
Dmitriy Zaporozhets 已提交
39
# Ruby/Rack Git Smart-HTTP Server Handler
40 41
# 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 已提交
42
gem 'gitlab-grack', '~> 2.0.2', require: 'grack'
D
Dmitriy Zaporozhets 已提交
43

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

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

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

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

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

A
Andrew8xx8 已提交
68 69 70
# Enumeration fields
gem 'enumerize'

R
randx 已提交
71
# Pagination
D
Dmitriy Zaporozhets 已提交
72
gem "kaminari", "~> 0.15.1"
R
randx 已提交
73 74

# HAML
75
gem "haml-rails"
R
randx 已提交
76 77

# Files attachments
78
gem "carrierwave"
79

80 81 82
# Drag and Drop UI
gem 'dropzonejs-rails'

83
# for aws storage
84
gem "fog", "~> 1.25.0"
85
gem "unf"
R
randx 已提交
86 87

# Authorization
S
Saito 已提交
88
gem "six"
R
randx 已提交
89 90

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

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

S
skv-headless 已提交
105 106 107
# Diffs
gem 'diffy', '~> 3.0.3'

108
# Application server
J
Jacob Vosmaer 已提交
109 110 111 112
group :unicorn do
  gem "unicorn", '~> 4.6.3'
  gem 'unicorn-worker-killer'
end
R
randx 已提交
113

A
Andrew8xx8 已提交
114 115 116
# State machine
gem "state_machine"

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

# Background jobs
D
sidekiq  
Dmitriy Zaporozhets 已提交
121
gem 'slim'
D
Dmitriy Zaporozhets 已提交
122
gem 'sinatra', require: nil
V
Vinnie Okada 已提交
123
gem 'sidekiq', '~> 3.3'
V
Vinnie Okada 已提交
124
gem 'sidetiq', '0.6.3'
R
randx 已提交
125 126

# HTTP requests
A
Ariejan de Vroom 已提交
127
gem "httparty"
R
randx 已提交
128 129

# Colored output to console
130
gem "colored"
R
randx 已提交
131

R
Riyad Preukschas 已提交
132
# GitLab settings
133
gem 'settingslogic'
A
Aleksei Kvitinskii 已提交
134

R
randx 已提交
135 136
# Misc
gem "foreman"
R
Robert Speicher 已提交
137
gem 'version_sorter'
R
randx 已提交
138

139 140 141
# Cache
gem "redis-rails"

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

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

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

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

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

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

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

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

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

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

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

D
Dmitriy Zaporozhets 已提交
175 176 177
# Ace editor
gem 'ace-rails-ap'

178
# Keyboard shortcuts
R
Robert Schilling 已提交
179 180
gem 'mousetrap-rails'

181 182 183
# Detect and convert string character encoding
gem 'charlock_holmes'

184
gem "sass-rails", '~> 4.0.2'
185 186
gem "coffee-rails"
gem "uglifier"
R
Robert Speicher 已提交
187
gem 'turbolinks', '~> 2.5.0'
188 189
gem 'jquery-turbolinks'

R
Robert Speicher 已提交
190 191 192 193 194
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 已提交
195
gem 'jquery-atwho-rails', '~> 1.0.0'
R
Robert Speicher 已提交
196
gem 'jquery-rails',       '3.1.3'
R
Robert Speicher 已提交
197 198
gem 'jquery-scrollto-rails'
gem 'jquery-ui-rails'
199
gem 'nprogress-rails'
R
Robert Speicher 已提交
200
gem 'raphael-rails',      '~> 2.1.2'
S
skv-headless 已提交
201
gem 'request_store'
R
Robert Speicher 已提交
202 203
gem 'select2-rails'
gem 'virtus'
G
gitlabhq 已提交
204

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

213 214 215
  # Better errors handler
  gem 'better_errors'
  gem 'binding_of_caller'
216 217 218

  # Docs generator
  gem "sdoc"
219 220 221

  # thin instead webrick
  gem 'thin'
G
gitlabhq 已提交
222 223 224
end

group :development, :test do
225
  gem 'coveralls', require: false
226
  gem 'rubocop', '0.28.0', require: false
227
  gem 'spinach-rails'
228
  gem "rspec-rails", '3.0.0'
229
  gem "capybara", '~> 2.3'
R
Robert Speicher 已提交
230
  gem 'capybara-screenshot', '~> 1.0.0'
231
  gem "pry-rails"
S
Saito 已提交
232
  gem "awesome_print"
233
  gem "database_cleaner"
R
Robert Speicher 已提交
234
  gem 'factory_girl_rails'
R
randx 已提交
235

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

239
  # Generate Fake data
R
Robert Speicher 已提交
240
  gem 'ffaker', '~> 2.0.0'
241

242
  # PhantomJS driver for Capybara
R
Robert Speicher 已提交
243
  gem 'poltergeist', '~> 1.6.0'
A
Andrew8xx8 已提交
244

245 246
  gem 'teaspoon', '~> 1.0.0'
  gem 'teaspoon-jasmine'
J
Jeroen van Baarsen 已提交
247

248 249 250 251
  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'
M
Marin Jankovski 已提交
252

D
Douwe Maan 已提交
253
  gem "byebug"
G
gitlabhq 已提交
254 255 256
end

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

group :production do
D
Dmitriy Zaporozhets 已提交
265
  gem "gitlab_meta", '7.0'
266
end
J
Jacob Vosmaer 已提交
267 268

gem "newrelic_rpm"
V
Valery Sizov 已提交
269 270

gem 'octokit', '3.7.0'
271
gem "rugments", "~> 1.0.0.beta7"