I'm trying to find a way to modify/extend a RakeFile from another RakeFile without actually changing it.
When I run my rake task I retrieve a solution from SVN which contains a rakefile. I want to:
- Change a variable in this rakefile.
- Add a new task to this rakefile which makes use of existing tasks.
- Execute the new task.
I want to do this preferably without actually modifying the original RakeFile on disc.