From e72f661b75c6aefbd93a3f3b708218d7ac2879bd Mon Sep 17 00:00:00 2001 From: Tomer Shemesh Date: Fri, 26 Jan 2018 08:57:52 -0500 Subject: [PATCH] Fix safe yaml crash Fix Safe Yaml crash In some cases safe yaml will be loaded and cause it to crash when ever it is run before date class has been loaded. This can be seen in a few cases and makes it crash when ever twine is called. https://github.com/dtao/safe_yaml/issues/80 https://github.com/test-kitchen/test-kitchen/issues/1327 https://github.com/jekyll/jekyll/issues/3201 This commit fixes that issue --- lib/twine/plugin.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/twine/plugin.rb b/lib/twine/plugin.rb index 0967e1a..c696223 100644 --- a/lib/twine/plugin.rb +++ b/lib/twine/plugin.rb @@ -1,3 +1,4 @@ +require 'date' require 'safe_yaml/load' SafeYAML::OPTIONS[:suppress_warnings] = true