-
- Downloads
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into remove-comment-toggle
No related branches found
No related tags found
Showing
- .github/ISSUE_TEMPLATE.md 3 additions, 0 deletions.github/ISSUE_TEMPLATE.md
- .github/PULL_REQUEST_TEMPLATE.md 3 additions, 0 deletions.github/PULL_REQUEST_TEMPLATE.md
- .gitignore 39 additions, 39 deletions.gitignore
- .gitlab-ci.yml 164 additions, 191 deletions.gitlab-ci.yml
- .rubocop.yml 190 additions, 95 deletions.rubocop.yml
- .vagrant_enabled 0 additions, 0 deletions.vagrant_enabled
- CHANGELOG 201 additions, 10 deletionsCHANGELOG
- CONTRIBUTING.md 7 additions, 7 deletionsCONTRIBUTING.md
- GITLAB_SHELL_VERSION 1 addition, 1 deletionGITLAB_SHELL_VERSION
- GITLAB_WORKHORSE_VERSION 1 addition, 1 deletionGITLAB_WORKHORSE_VERSION
- Gemfile 32 additions, 22 deletionsGemfile
- Gemfile.lock 114 additions, 179 deletionsGemfile.lock
- README.md 6 additions, 4 deletionsREADME.md
- Rakefile 2 additions, 0 deletionsRakefile
- VERSION 1 addition, 1 deletionVERSION
- app/assets/images/ci/arch.jpg 0 additions, 0 deletionsapp/assets/images/ci/arch.jpg
- app/assets/images/ci/favicon.ico 0 additions, 0 deletionsapp/assets/images/ci/favicon.ico
- app/assets/images/ci/loader.gif 0 additions, 0 deletionsapp/assets/images/ci/loader.gif
- app/assets/images/ci/no_avatar.png 0 additions, 0 deletionsapp/assets/images/ci/no_avatar.png
- app/assets/images/ci/rails.png 0 additions, 0 deletionsapp/assets/images/ci/rails.png
.github/ISSUE_TEMPLATE.md
0 → 100644
.github/PULL_REQUEST_TEMPLATE.md
0 → 100644
File moved
Loading
| Loading
| @@ -18,9 +18,8 @@ gem "mysql2", '~> 0.3.16', group: :mysql |
gem "pg", '~> 0.18.2', group: :postgres | ||
# Authentication libraries | ||
gem 'devise', '~> 3.5.4' | ||
gem 'devise', '~> 4.0' | ||
gem 'doorkeeper', '~> 3.1' | ||
gem 'devise-async', '~> 0.9.0' | ||
gem 'omniauth', '~> 1.3.1' | ||
gem 'omniauth-auth0', '~> 1.4.1' | ||
gem 'omniauth-azure-oauth2', '~> 0.0.6' | ||
Loading
| Loading
| @@ -36,18 +35,20 @@ gem 'omniauth-shibboleth', '~> 1.2.0' |
gem 'omniauth-twitter', '~> 1.2.0' | ||
gem 'omniauth_crowd', '~> 2.2.0' | ||
gem 'rack-oauth2', '~> 1.2.1' | ||
gem 'jwt' | ||
# Spam and anti-bot protection | ||
gem 'recaptcha', require: 'recaptcha/rails' | ||
gem 'recaptcha', '~> 3.0', require: 'recaptcha/rails' | ||
gem 'akismet', '~> 2.0' | ||
# Two-factor authentication | ||
gem 'devise-two-factor', '~> 2.0.0' | ||
gem 'devise-two-factor', '~> 3.0.0' | ||
gem 'rqrcode-rails3', '~> 0.1.7' | ||
gem 'attr_encrypted', '~> 1.3.4' | ||
gem 'attr_encrypted', '~> 3.0.0' | ||
gem 'u2f', '~> 0.2.1' | ||
# Browser detection | ||
gem "browser", '~> 1.0.0' | ||
gem "browser", '~> 2.0.3' | ||
# Extracting information from a git repository | ||
# Provide access to Gitlab::Git library | ||
Loading
| Loading
| @@ -72,7 +73,7 @@ gem 'grape-entity', '~> 0.4.2' |
gem 'rack-cors', '~> 0.4.0', require: 'rack/cors' | ||
# Pagination | ||
gem "kaminari", "~> 0.16.3" | ||
gem "kaminari", "~> 0.17.0" | ||
# HAML | ||
gem "haml-rails", '~> 0.9.0' | ||
Loading
| Loading
| @@ -83,8 +84,15 @@ gem "carrierwave", '~> 0.10.0' |
# Drag and Drop UI | ||
gem 'dropzonejs-rails', '~> 0.7.1' | ||
# for backups | ||
gem 'fog-aws', '~> 0.9' | ||
gem 'fog-azure', '~> 0.0' | ||
gem 'fog-core', '~> 1.40' | ||
gem 'fog-local', '~> 0.3' | ||
gem 'fog-google', '~> 0.3' | ||
gem 'fog-openstack', '~> 0.1' | ||
# for aws storage | ||
gem "fog", "~> 1.36.0" | ||
gem "unf", '~> 0.1.4' | ||
# Authorization | ||
Loading
| Loading
| @@ -104,7 +112,7 @@ gem 'org-ruby', '~> 0.9.12' |
gem 'creole', '~> 0.5.0' | ||
gem 'wikicloth', '0.8.1' | ||
gem 'asciidoctor', '~> 1.5.2' | ||
gem 'rouge', '~> 1.10.1' | ||
gem 'rouge', '~> 1.11' | ||
# See https://groups.google.com/forum/#!topic/ruby-security-ann/aSbgDiwb24s | ||
# and https://groups.google.com/forum/#!topic/ruby-security-ann/Dy7YiKb_pMM | ||
Loading
| Loading
| @@ -120,7 +128,7 @@ group :unicorn do |
end | ||
# State machine | ||
gem "state_machines-activerecord", '~> 0.3.0' | ||
gem "state_machines-activerecord", '~> 0.4.0' | ||
# Run events after state machine commits | ||
gem 'after_commit_queue' | ||
Loading
| Loading
| @@ -137,7 +145,7 @@ gem 'redis-namespace' |
gem "httparty", '~> 0.13.3' | ||
# Colored output to console | ||
gem "colorize", '~> 0.7.0' | ||
gem "rainbow", '~> 2.1.0' | ||
# GitLab settings | ||
gem 'settingslogic', '~> 2.0.9' | ||
Loading
| Loading
| @@ -177,9 +185,6 @@ gem 'ruby-fogbugz', '~> 0.2.1' |
# d3 | ||
gem 'd3_rails', '~> 3.5.0' | ||
#cal-heatmap | ||
gem 'cal-heatmap-rails', '~> 3.6.0' | ||
# underscore-rails | ||
gem "underscore-rails", "~> 1.8.0" | ||
Loading
| Loading
| @@ -197,7 +202,7 @@ gem 'licensee', '~> 8.0.0' |
gem "rack-attack", '~> 4.3.1' | ||
# Ace editor | ||
gem 'ace-rails-ap', '~> 2.0.1' | ||
gem 'ace-rails-ap', '~> 4.0.2' | ||
# Keyboard shortcuts | ||
gem 'mousetrap-rails', '~> 1.4.6' | ||
Loading
| Loading
| @@ -218,13 +223,13 @@ gem 'gitlab_emoji', '~> 0.3.0' |
gem 'gon', '~> 6.0.1' | ||
gem 'jquery-atwho-rails', '~> 1.3.2' | ||
gem 'jquery-rails', '~> 4.1.0' | ||
gem 'jquery-scrollto-rails', '~> 1.4.3' | ||
gem 'jquery-ui-rails', '~> 5.0.0' | ||
gem 'raphael-rails', '~> 2.1.2' | ||
gem 'request_store', '~> 1.3.0' | ||
gem 'select2-rails', '~> 3.5.9' | ||
gem 'virtus', '~> 1.0.1' | ||
gem 'net-ssh', '~> 3.0.1' | ||
gem 'base32', '~> 0.3.0' | ||
# Sentry integration | ||
gem 'sentry-raven', '~> 0.15' | ||
Loading
| Loading
| @@ -240,9 +245,8 @@ end |
group :development do | ||
gem "foreman" | ||
gem 'brakeman', '~> 3.2.0', require: false | ||
gem 'brakeman', '~> 3.3.0', require: false | ||
gem "annotate", "~> 2.7.0" | ||
gem 'letter_opener_web', '~> 1.3.0' | ||
gem 'quiet_assets', '~> 1.0.2' | ||
gem 'rerun', '~> 0.11.0' | ||
Loading
| Loading
| @@ -293,15 +297,19 @@ group :development, :test do |
gem 'spring-commands-spinach', '~> 1.1.0' | ||
gem 'spring-commands-teaspoon', '~> 0.0.2' | ||
gem 'rubocop', '~> 0.38.0', require: false | ||
gem 'rubocop', '~> 0.40.0', require: false | ||
gem 'rubocop-rspec', '~> 1.5.0', require: false | ||
gem 'scss_lint', '~> 0.47.0', require: false | ||
gem 'coveralls', '~> 0.8.2', require: false | ||
gem 'coveralls', '~> 0.8.2', require: false | ||
gem 'simplecov', '~> 0.11.0', require: false | ||
gem 'flog', require: false | ||
gem 'flay', require: false | ||
gem 'bundler-audit', require: false | ||
gem 'benchmark-ips', require: false | ||
gem "license_finder", require: false | ||
gem 'knapsack' | ||
end | ||
group :test do | ||
Loading
| Loading
| @@ -325,8 +333,7 @@ gem "mail_room", "~> 0.7" |
gem 'email_reply_parser', '~> 0.5.8' | ||
## CI | ||
gem 'activerecord-deprecated_finders', '~> 1.0.3' | ||
gem 'activerecord-session_store', '~> 0.1.0' | ||
gem 'activerecord-session_store', '~> 1.0.0' | ||
gem "nested_form", '~> 0.3.2' | ||
# OAuth | ||
Loading
| Loading
| @@ -334,3 +341,6 @@ gem 'oauth2', '~> 1.0.0' |
# Soft deletion | ||
gem "paranoia", "~> 2.0" | ||
# Health check | ||
gem 'health_check', '~> 1.5.1' |
app/assets/images/ci/arch.jpg
deleted
100644 → 0
24.6 KiB
app/assets/images/ci/favicon.ico
deleted
100644 → 0
5.3 KiB
app/assets/images/ci/loader.gif
deleted
100644 → 0
4.3 KiB
app/assets/images/ci/no_avatar.png
deleted
100644 → 0
1.31 KiB
app/assets/images/ci/rails.png
deleted
100644 → 0
6.49 KiB