lib/rordash/file_util.rb in rordash-0.1.0 vs lib/rordash/file_util.rb in rordash-0.1.1

- old
+ new

@@ -49,10 +49,10 @@ def read_fixture_file(rel_path) File.read(PathUtil.fixtures_path(rel_path)) end def open_fixture_file(filename) - pathname = Utils::FileUtil.fixture_file_path(filename) + pathname = fixture_file_path(filename) return nil unless pathname.exist? ::File.open(pathname.to_s) end