From d1ffe2c3e3552fe26d81bb48a988d62b6bccddc5 Mon Sep 17 00:00:00 2001 From: Sebastien Badia Date: Mon, 14 Dec 2015 15:29:20 +0100 Subject: [PATCH] Adding psych on Gemfile explicitly It seems like bundle has a bug that, somehow, it unloads the psych library unless is installed through bundle itself. It will be fixed on bundle 1.2. https://github.com/bundler/bundler/issues/2068 https://github.com/bundler/bundler/issues/4149 Change-Id: I4d2d165e91cff958090a197ba7b5bf2d83df0fb1 Closes-Bug: #1525929 --- Gemfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Gemfile b/Gemfile index fc221439..b764414c 100644 --- a/Gemfile +++ b/Gemfile @@ -14,6 +14,10 @@ group :development, :test do gem 'puppet-lint-numericvariable', :require => 'false' gem 'json', :require => 'false' gem 'webmock', :require => 'false' + # adding 'psych' explicitly + # https://github.com/bundler/bundler/issues/4149 + # TODO: drop it in a future release of 'bundle'. + gem 'psych', :require => 'false' end group :system_tests do