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: I47f6d1f8ea7385115719c681c55e05c52e374e7f
Closes-Bug: #1525929
This commit is contained in:
Sebastien Badia 2015-12-14 15:32:36 +01:00
parent c659683d0d
commit f9667b1309
1 changed files with 4 additions and 0 deletions

View File

@ -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