module ParallelTests::Tasks

def rake_bin

def rake_bin
  # Prevent 'Exec format error' Errno::ENOEXEC on Windows
  return "rake" if RUBY_PLATFORM =~ /mswin|mingw|cygwin/
  binstub_path = File.join('bin', 'rake')
  return binstub_path if File.exist?(binstub_path)
  "rake"
end