Flowdock
method

find_dir

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: TestTask
find_dir(fn) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rake/testtask.rb, line 182
    def find_dir(fn) # :nodoc:
      $LOAD_PATH.each do |path|
        file_path = File.join(path, "#{fn}.rb")
        return path if File.exist? file_path
      end
      nil
    end
Register or log in to add new notes.