diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2019-05-20 18:05:36 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2019-05-20 18:05:36 -0700 |
commit | 9dbdb769bfd963f82eb4bfea53c83501d0193766 (patch) | |
tree | daba4babc4ba8eb73bd765783dc8a53a7abff6be /lib/chef/cookbook/syntax_check.rb | |
parent | 248344cfe776b66a8da563c985e34d9c99967791 (diff) | |
download | chef-lcg/require-idempotency.tar.gz |
This hits the ones that are most frequently required.lcg/require-idempotency
Stops the kernel from scanning through all the activated gems every time in order
to resolve names into pathnames.
See rubygems/rubygems#2762
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/cookbook/syntax_check.rb')
-rw-r--r-- | lib/chef/cookbook/syntax_check.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/cookbook/syntax_check.rb b/lib/chef/cookbook/syntax_check.rb index 8743e07caf..89061d4f5f 100644 --- a/lib/chef/cookbook/syntax_check.rb +++ b/lib/chef/cookbook/syntax_check.rb @@ -15,9 +15,9 @@ # limitations under the License. # -require "pathname" -require "stringio" -require "erubis" +require "pathname" unless defined?(Pathname) +require "stringio" unless defined?(StringIO) +require "erubis" unless defined?(Erubis) require_relative "../mixin/shell_out" require_relative "../mixin/checksum" require_relative "../util/path_helper" |