module Rake::AltSystem

def find_runnable(file)

def find_runnable(file)
  if file =~ RUNNABLE_PATTERN
    file
  else
    RUNNABLE_EXTS.each { |ext|
      if File.exist?(test = "#{file}.#{ext}")
        return test
      end
    }
    nil
  end
end