vote up 0 vote down star

I think I'm going mad. Can anyone help?

I have the 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
    # do nothing
end

It doesn't delete the "bin" folder nor the contents of the "bin" folder. I'm running Ruby in Windows (1.86 or so) and installed rake using, gem install rake.

Have I missed something. I've tried --trace etc.. but get no feedback.

flag

75% accept rate

1 Answer

vote up 0 vote down

CLEAN nor CLOBBER are not implicit tasks - you must declare dependency or invoke them

link|flag
Could you give an example, as everywhere I'm reading doesn't state this to be the case. Martin Fowler for example, martinfowler.com/articles/…, or this article stuartellis.eu/articles/rake. – Bealer Dec 15 at 11:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.