jimweirich / rake

A make-like build utility for Ruby.
http://rake.rubyforge.org/
1.1k stars 10 forks source link

Add build_all capability. #254

Closed andyg0808 closed 10 years ago

andyg0808 commented 10 years ago

It is supposed to be the equivalent of the -B option in GNU Make. It makes Rake act like all the files created by file targets are out of date.

rdlugosz commented 10 years ago

A feature like this would need to be accompanied by changes to the documentation as well as a variety of new unit tests (testing the options parser, file tasks, etc). IMO, you'd need to take this a lot further before it'd be considered for inclusion.

Have you considered just using the clean/clobber tasks to create a rebuild_all task?

drbrain commented 10 years ago

I think the option is fine but it does need tests to be merged.