-
- Downloads
Merge branch 'master' into jivl-update-katex
No related branches found
No related tags found
Showing
- .babelrc 2 additions, 1 deletion.babelrc
- .codeclimate.yml 3 additions, 3 deletions.codeclimate.yml
- .eslintrc 18 additions, 5 deletions.eslintrc
- .flayignore 2 additions, 0 deletions.flayignore
- .gitignore 1 addition, 0 deletions.gitignore
- .gitlab-ci.yml 128 additions, 80 deletions.gitlab-ci.yml
- .gitlab/merge_request_templates/Documentation.md 2 additions, 0 deletions.gitlab/merge_request_templates/Documentation.md
- .rubocop.yml 8 additions, 1212 deletions.rubocop.yml
- .rubocop_todo.yml 605 additions, 100 deletions.rubocop_todo.yml
- .ruby-version 1 addition, 1 deletion.ruby-version
- CHANGELOG.md 456 additions, 3249 deletionsCHANGELOG.md
- CONTRIBUTING.md 12 additions, 5 deletionsCONTRIBUTING.md
- GITALY_SERVER_VERSION 1 addition, 1 deletionGITALY_SERVER_VERSION
- GITLAB_SHELL_VERSION 1 addition, 1 deletionGITLAB_SHELL_VERSION
- GITLAB_WORKHORSE_VERSION 1 addition, 1 deletionGITLAB_WORKHORSE_VERSION
- Gemfile 25 additions, 15 deletionsGemfile
- Gemfile.lock 55 additions, 42 deletionsGemfile.lock
- PROCESS.md 27 additions, 3 deletionsPROCESS.md
- VERSION 1 addition, 1 deletionVERSION
- app/assets/images/file_icons.svg 1 addition, 0 deletionsapp/assets/images/file_icons.svg
This diff is collapsed.
This diff is collapsed.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
Loading
| Loading
| @@ -12,7 +12,7 @@ gem 'sprockets', '~> 3.7.0' |
gem 'default_value_for', '~> 3.0.0' | ||
# Supported DBs | ||
gem 'mysql2', '~> 0.4.5', group: :mysql | ||
gem 'mysql2', '~> 0.4.10', group: :mysql | ||
gem 'pg', '~> 0.18.2', group: :postgres | ||
gem 'rugged', '~> 0.26.0' | ||
Loading
| Loading
| @@ -69,7 +69,15 @@ gem 'net-ldap' |
# Git Wiki | ||
# Required manually in config/initializers/gollum.rb to control load order | ||
# Before updating this gem, check if | ||
# https://github.com/gollum/gollum-lib/pull/292 has been merged. | ||
# If it has, then remove the monkey patch for update_page, rename_page and raw_data_in_committer | ||
# in config/initializers/gollum.rb | ||
gem 'gollum-lib', '~> 4.2', require: false | ||
# Before updating this gem, check if | ||
# https://github.com/gollum/rugged_adapter/pull/28 has been merged. | ||
# If it has, then remove the monkey patch for tree_entry in config/initializers/gollum.rb | ||
gem 'gollum-rugged_adapter', '~> 0.4.4', require: false | ||
# Language detection | ||
Loading
| Loading
| @@ -78,7 +86,7 @@ gem 'github-linguist', '~> 4.7.0', require: 'linguist' |
# API | ||
gem 'grape', '~> 1.0' | ||
gem 'grape-entity', '~> 0.6.0' | ||
gem 'rack-cors', '~> 0.4.0', require: 'rack/cors' | ||
gem 'rack-cors', '~> 1.0.0', require: 'rack/cors' | ||
# Disable strong_params so that Mash does not respond to :permitted? | ||
gem 'hashie-forbidden_attributes' | ||
Loading
| Loading
| @@ -111,7 +119,7 @@ gem 'google-api-client', '~> 0.13.6' |
gem 'unf', '~> 0.1.4' | ||
# Seed data | ||
gem 'seed-fu', '2.3.6' # Upgrade to > 2.3.7 once https://github.com/mbleigh/seed-fu/issues/123 is solved | ||
gem 'seed-fu', '~> 2.3.7' | ||
# Markdown and HTML processing | ||
gem 'html-pipeline', '~> 1.11.0' | ||
Loading
| Loading
| @@ -128,7 +136,7 @@ gem 'asciidoctor-plantuml', '0.0.7' |
gem 'rouge', '~> 2.0' | ||
gem 'truncato', '~> 0.7.9' | ||
gem 'bootstrap_form', '~> 2.7.0' | ||
gem 'nokogiri', '~> 1.8.1' | ||
gem 'nokogiri', '~> 1.8.2' | ||
# Diffs | ||
gem 'diffy', '~> 3.1.0' | ||
Loading
| Loading
| @@ -229,6 +237,9 @@ gem 'charlock_holmes', '~> 0.7.5' |
# Faster JSON | ||
gem 'oj', '~> 2.17.4' | ||
# Faster blank | ||
gem 'fast_blank' | ||
# Parse time & duration | ||
gem 'chronic', '~> 0.10.2' | ||
gem 'chronic_duration', '~> 0.10.6' | ||
Loading
| Loading
| @@ -283,7 +294,7 @@ group :metrics do |
gem 'influxdb', '~> 0.2', require: false | ||
# Prometheus | ||
gem 'prometheus-client-mmap', '~> 0.7.0.beta43' | ||
gem 'prometheus-client-mmap', '~> 0.7.0.beta44' | ||
gem 'raindrops', '~> 0.18' | ||
end | ||
Loading
| Loading
| @@ -318,7 +329,7 @@ group :development, :test do |
gem 'spinach-rerun-reporter', '~> 0.0.2' | ||
gem 'rspec_profiling', '~> 0.0.5' | ||
gem 'rspec-set', '~> 0.1.3' | ||
gem 'rspec-parameterized' | ||
gem 'rspec-parameterized', require: false | ||
# Prevent occasions where minitest is not bundled in packaged versions of ruby (see #3826) | ||
gem 'minitest', '~> 5.7.0' | ||
Loading
| Loading
| @@ -334,13 +345,15 @@ group :development, :test do |
gem 'spring-commands-rspec', '~> 1.0.4' | ||
gem 'spring-commands-spinach', '~> 1.1.0' | ||
gem 'rubocop', '~> 0.49.1', require: false | ||
gem 'rubocop-rspec', '~> 1.15.1', require: false | ||
gem 'rubocop-gitlab-security', '~> 0.1.0', require: false | ||
gem 'scss_lint', '~> 0.54.0', require: false | ||
gem 'gitlab-styles', '~> 2.3', require: false | ||
# Pin these dependencies, otherwise a new rule could break the CI pipelines | ||
gem 'rubocop', '~> 0.52.1' | ||
gem 'rubocop-rspec', '~> 1.22.1' | ||
gem 'scss_lint', '~> 0.56.0', require: false | ||
gem 'haml_lint', '~> 0.26.0', require: false | ||
gem 'simplecov', '~> 0.14.0', require: false | ||
gem 'flay', '~> 2.8.0', require: false | ||
gem 'flay', '~> 2.10.0', require: false | ||
gem 'bundler-audit', '~> 0.5.0', require: false | ||
gem 'benchmark-ips', '~> 2.3.0', require: false | ||
Loading
| Loading
| @@ -379,9 +392,6 @@ gem 'ruby-prof', '~> 0.16.2' |
# OAuth | ||
gem 'oauth2', '~> 1.4' | ||
# Soft deletion | ||
gem 'paranoia', '~> 2.3.1' | ||
# Health check | ||
gem 'health_check', '~> 2.6.0' | ||
Loading
| Loading
| @@ -400,7 +410,7 @@ group :ed25519 do |
end | ||
# Gitaly GRPC client | ||
gem 'gitaly-proto', '~> 0.61.0', require: 'gitaly' | ||
gem 'gitaly-proto', '~> 0.83.0', require: 'gitaly' | ||
gem 'toml-rb', '~> 0.3.15', require: false | ||
Loading
| Loading
|
app/assets/images/file_icons.svg
0 → 100644
Source diff could not be displayed: it is too large. Options to address this: view the blob.
Please register or sign in to comment