Rake Task (or rule) dependency check tweaking

P

Peter Pk

Given there may be a complex task -
ie: spawns a shell process running "make", "vcbuild", "ant" or
whatever
or invokes a large ruby subroutine

Given that the module is opaque to ruby and needs to be invoked to
determine whether it does or does not need to rebuild it's (file)
target. How might one have the dependent task invoke this check in this
ancestor during the traversing of the dependencies, and if the ancestor
task decides it is "up to date" *not* execute it's block, triggering all
it's dependents to rebuild.

Something like overriding an "is_up_to_date" method on a file task which
is invoked during checking the graph of dependencies?

ie: inside ancestor

def is_up_to_date
sh "checkAndMaybeBuildIt ..." # may or may not build it's targets
return(no_targets_updated)
end

and if this task may or may not update multiple target files?

(should I get the Rake source code? How to get it? via Gems?)
???
 
P

Peter Pk

I got the source to Rake. Pardon the prior post :)

It seems what one does is to subclass a FileTask and overide the

needed? and timestamp methods

Source code is often the best doc :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,527
Members
45,000
Latest member
MurrayKeync

Latest Threads

Top