Flowdock
method

find_dir

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: TestTask

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2_2_9) is shown here.

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 203
    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.