From 2c700e0144ee2895b98e1777944c3ff001daf1a0 Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Wed, 25 Aug 2021 06:17:14 +0200 Subject: [PATCH] docs: update Bundler manager readme (#11413) --- lib/manager/bundler/readme.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/manager/bundler/readme.md b/lib/manager/bundler/readme.md index dc27354b99..4580a2a89b 100644 --- a/lib/manager/bundler/readme.md +++ b/lib/manager/bundler/readme.md @@ -9,7 +9,7 @@ If you need Bundler to authenticate with a private registry - and it's not the s "hostRules": [ { "matchHost": "private-registry.company.com", - "hostType": "bundler", + "hostType": "rubygems", "token": "abc123" } ] @@ -18,7 +18,11 @@ If you need Bundler to authenticate with a private registry - and it's not the s Important notes regarding the above: -`hostType=bundler` is essential. If the registry is used for multiple package types then you may need multiple `hostRules`. You cannot leave off `hostType`. +`hostType` is a required field, and you must provide a value. +If you use Renovate `v26` or higher, set `hostType=rubygems`. +If you use Renovate `v25` or lower, set `hostType=bundler`. + +If the registry is used for multiple package types then you may need multiple `hostRules`. Instead of `token`, you may also supply `username` and `password` instead. -- GitLab