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 …
Tag: rake
Run rake tasks in emacs with rinari
I use emacs and rinari when I’m working on ChiliProject. I learned from reading Continuous Testing is that I should be able to run all of my tests with a single key command in an IDE. Unfortunately, ChiliProject’s full test suite takes about 20 minutes to run on my desktop (a whole different problem I’ll be …