diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-09-08 21:48:57 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-09-08 21:48:57 -0700 |
commit | 08ab2fa65ffd5f1baf2cef5ca6ddd945cf6b246e (patch) | |
tree | a862344891463e2e06d703139c299ff0a2d58b2b /spec/spec_helper.rb | |
parent | 306cb33bc807bf9fe573321111fa975c39601652 (diff) | |
download | mixlib-shellout-08ab2fa65ffd5f1baf2cef5ca6ddd945cf6b246e.tar.gz |
Use __dir__ instead of __FILE__
Makes things a bit easier to read
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index fb60fe7..f1d60d2 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,5 +1,5 @@ -$:.unshift File.expand_path("../../lib", __FILE__) -$:.unshift File.expand_path("../..", __FILE__) +$:.unshift File.expand_path("../lib", __dir__) +$:.unshift File.expand_path("..", __dir__) require "mixlib/shellout" require "tmpdir" |