Today, I Learned...

by Justin Campbell

< All

rake --prereqs shows the dependencies of your rake tasks:

$ rake -P
rake build
rake cane
rake ci
    spec
    cane
rake default
    ci
rake install
    build
rake release
    build
rake spec

Useful for navigating the maze of Rails' rake db:... commands.

April 8th, 2013