It's unsafe to evaluate Dir.pwd everytime we want to generate a path to the work directory

We be changing dirs and shit
This commit is contained in:
R. Tyler Croy 2012-09-03 12:20:08 -07:00
parent 1fd531a730
commit 3c83069c9a
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ module Blimpy
end
def work_dir
File.join(Dir.pwd, 'tmp', 'cucumber')
@work_dir ||= File.join(Dir.pwd, 'tmp', 'cucumber')
end
def manifest_path

View File

@ -1,5 +1,5 @@
module Blimpy
module Cucumber
VERSION = "0.0.5"
VERSION = "0.0.6"
end
end