module Rspec::Core::RubyProject

def ascend_until(&block) # :nodoc:

:nodoc:
def ascend_until(&block) # :nodoc:
  Pathname(File.expand_path('.')).ascend do |path|
    return path if block.call(path)
  end
end