module RSpec::Core::RubyProject

def ascend_until

def ascend_until
  Pathname(File.expand_path('.')).ascend do |path|
    return path if yield(path)
  end
end