summaryrefslogtreecommitdiff
path: root/spec/support/path.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/path.rb')
-rw-r--r--spec/support/path.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/support/path.rb b/spec/support/path.rb
index f748b11105..b24ac16d5b 100644
--- a/spec/support/path.rb
+++ b/spec/support/path.rb
@@ -12,12 +12,12 @@ module Spec
@gemspec ||= Pathname.new(File.expand_path(root.join("bundler.gemspec"), __FILE__))
end
- def bin
- @bin ||= Pathname.new(File.expand_path(root.join("exe"), __FILE__))
+ def bindir
+ @bindir ||= Pathname.new(File.expand_path(root.join("exe"), __FILE__))
end
- def spec
- @spec ||= Pathname.new(File.expand_path(root.join("spec"), __FILE__))
+ def spec_dir
+ @spec_dir ||= Pathname.new(File.expand_path(root.join("spec"), __FILE__))
end
def tmp(*path)