diff options
author | Sean McGivern <sean@gitlab.com> | 2019-01-01 08:52:56 +0000 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2019-01-01 08:52:56 +0000 |
commit | 895355724586574634f0ffdde7a70ca53a19be17 (patch) | |
tree | 54c5acc8a39b4e0a2e314fd1c1cd69dc716d4d7e /lib | |
parent | 30a301b8ae4d03a030eda3ec3deac949a2ae78e1 (diff) | |
parent | c7ac1b4060a6875d888eeb62908677d67cd87ef7 (diff) | |
download | gitlab-ce-895355724586574634f0ffdde7a70ca53a19be17.tar.gz |
Merge branch 'patch-37' into 'master'
Fix #55740: Use the '--no-document' option instead of the 'gem' tool's deprecated options
Closes #55740
See merge request gitlab-org/gitlab-ce!24049
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/ci/templates/Ruby.gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/ci/templates/Ruby.gitlab-ci.yml b/lib/gitlab/ci/templates/Ruby.gitlab-ci.yml index 93cb31f48c0..51d6628c63b 100644 --- a/lib/gitlab/ci/templates/Ruby.gitlab-ci.yml +++ b/lib/gitlab/ci/templates/Ruby.gitlab-ci.yml @@ -24,7 +24,7 @@ before_script: - ruby -v # Print out ruby version for debugging # Uncomment next line if your rails app needs a JS runtime: # - apt-get update -q && apt-get install nodejs -yqq - - gem install bundler --no-ri --no-rdoc # Bundler is not installed with the image + - gem install bundler --no-document # Bundler is not installed with the image - bundle install -j $(nproc) --path vendor # Install dependencies into ./vendor/ruby # Optional - Delete if not using `rubocop` |