From 72c28582260af726fe695521fd2bd1b6c9d8f7e6 Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Fri, 7 Jan 2022 14:04:31 +0100 Subject: [PATCH] Pin rdoc to < 6.4 rdoc 6.4 pulls in psych 4 and Puppet is incompatible with that. We don't want to list psych since that updates the bundled version --- Gemfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Gemfile b/Gemfile index cc7fb9cb..e3294121 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,9 @@ source 'https://rubygems.org' +# rdoc 6.4 pulls in psych 4 and Puppet is incompatible with that. +# We don't want to list psych since that updates the bundled version +gem 'rdoc', '< 6.4' + gem 'kafo', '~> 6.4' gem 'librarian-puppet', '>= 3.0' gem 'puppet', ENV.key?('PUPPET_VERSION') ? "~> #{ENV['PUPPET_VERSION']}" : '~> 7.0'