I use Rake to automate a lot of tasks, in my plugins and on my development systems. A good technique to learn is to organize and group your tasks using Rake namespaces. Example: desc "Download missing plugins from Github" task :plugins do # .. end namespace :plugins do desc "Fetch latest revisions" task :fetch …