Let's say I have a chain of rake
tasks
taskA --(calls)--> taskB --(calls)--> taskC
Is there any way, in the middle of taskC
to get the list of invoking rake tasks? I.e. the chain of rake
tasks that have been called to lead up to this task?
caller
returns a not-so-useful stack trace in this instance.
Thanks!