I have a project consisting of several projects, for example:
my_project \ proj_A \ (code, tests, Rakefile, etc.) proj_B \ (code, tests, Rakefile, etc.) proj_C \ (code, tests, Rakefile, etc.)
I would like to create a Rakefile in the "my_project" section, which can run Rakefile in other projects. For example, to pack the entire application, I need to run the tasks defined in Rakefile in proj_A, proj_B, and then proj_C (in that order).
What is the best way to do this? Is there just a Rakefile that defines the tasks that other Rakefiles call?
source share