One Task Per File, Namespaces Match Directories
Learn about directories matching with the namespaces.
We'll cover the following...
Organizing Rake task
To invoke a Rake task, we type bin/rails «task_name»
. Developers often either need to figure out the task name in order to invoke, or they may see an invocation configured and need to find the source code. These are both ...