Here’s the test task in my rake file. Works on Windows, but not on my Mac. It just hangs. What’s the problem?
Rake::TestTask.new do |t| t.libs << "./app;./test" t.test_files = FileList['test/test*.rb'] t.verbose = true end
Two hours later, I tell you that I need this on my Mac.
Rake::TestTask.new do |t| t.libs << "./app:./test" t.test_files = FileList['test/test*.rb'] t.verbose = true end
See the difference? Semi-colon…colon…Wow…