diff options
author | Tim Smith <tsmith84@gmail.com> | 2019-12-20 21:44:15 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2019-12-20 21:44:15 -0800 |
commit | bbcd89118b9ce6ae9230390d0a706e550b082e6a (patch) | |
tree | 70acae6b706bb4b84d6f3af57dba5ad190e42bca /lib/mixlib | |
parent | c41637cf6a00e2054d562f1e98379fb20bcc44f9 (diff) | |
download | mixlib-cli-relative.tar.gz |
Substitute require for require_relativerelative
require_relative is significantly faster and should be used when available.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/mixlib')
-rw-r--r-- | lib/mixlib/cli.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mixlib/cli.rb b/lib/mixlib/cli.rb index c426b06..b8f5748 100644 --- a/lib/mixlib/cli.rb +++ b/lib/mixlib/cli.rb @@ -17,7 +17,7 @@ # require "optparse" -require "mixlib/cli/formatter" +require_relative "cli/formatter" module Mixlib # == Mixlib::CLI |