From 9d53a8091a7586052bef7312cd8873af9a88c5ce Mon Sep 17 00:00:00 2001 From: Hailee Kenney Date: Mon, 13 Oct 2014 08:29:15 -0700 Subject: [PATCH] (PDOC-14) Fix strings to work with future parser Prior to this commit, two require statements were in the wrong order, causing strings to fail when running against anything that required the future parser. Now, those requires have been flipped and strings can run with `--parser future` successfully. --- lib/puppetx/puppetlabs/strings.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/puppetx/puppetlabs/strings.rb b/lib/puppetx/puppetlabs/strings.rb index 8dbcaf1..03b2de8 100644 --- a/lib/puppetx/puppetlabs/strings.rb +++ b/lib/puppetx/puppetlabs/strings.rb @@ -1,6 +1,6 @@ require 'puppet' -require 'puppetx' require 'puppet/pops' +require 'puppetx' require 'puppet/util/docs' require 'yard'