class Pronto::Runner

def ruby_executable?(path)

def ruby_executable?(path)
  return false if File.directory?(path)
  line = File.open(path, &:readline)
  line =~ /#!.*ruby/
rescue ArgumentError, EOFError
  false
end