diff --git a/lib/manager/bundler/readme.md b/lib/manager/bundler/readme.md index dc27354b99d7ccd00ec437623d72f4fcec06c4ed..4580a2a89b8a9daca583f6f91e583f0b6a562518 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.