On May 14, 2010, at 10:44 AM, James Britt wrote:
> [snip]...end up with a set files whose actual purpose or behavior is not entirely clear. If I move the code into Rake tasks with a decent namespace then I can more easily see what helper code I have by running rake -T | grep my-cool-namespace
FYI:
$ rake -T | grep collation
rake db:collation # Retrieves the coll...
$ rake -T collation
rake db:collation # Retrieves the coll...
The grep is unnecessary. -T will do it for you.
~ j.