I think I'm going crazy. Can anyone help?
I have a folder c: \ project \ bin I run the following to execute my rake script
cd C:\project
rake
In my rake script, I have:
require 'rake/clean'
CLOBBER.include('bin')
task :default => [:compile]
task :compile do
end
It does not delete the bin folder or the contents of the bin folder. I run Ruby on Windows (1.86 or so) and install the rake using gem install rake.
Did I miss something. I tried --trace, etc., but didn’t get any feedback.
source
share