Flowdock
method

find_rakefile_location

Importance_0
v1_9_3_125 - Show latest stable - 0 notes - Class: Application
find_rakefile_location() public

No documentation

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

Hide source
# File lib/rake/application.rb, line 466
    def find_rakefile_location
      here = Dir.pwd
      while ! (fn = have_rakefile)
        Dir.chdir("..")
        if Dir.pwd == here || options.nosearch
          return nil
        end
        here = Dir.pwd
      end
      [fn, here]
    ensure
      Dir.chdir(Rake.original_dir)
    end
Register or log in to add new notes.