I've got a Rakefile with a rake task that I would normally call from the commandline (rake blog:post Title).
I'd like to write a ruby script that calls that rake task multiple times, but the only solution I see is shelling out (`` or system).
What's the right way to do this?