rails-template
rails-template copied to clipboard
Issue 336 rake tasks
Closes #336
- Add the records counting rake task within the
appnamespace. Include a comment guiding devs on what should go inappnamespace. - Create an empty
devnamespace with a comment guiding devs on what to put there - Document the tasks in the
appanddevnamespaces in the README -
rails newdoes not generate aREADME.rdocanymore so we don't need to remove it
The output in README.md looks like this after this change:
...snip...
Rake tasks
# App tasks (useful in local development and deployed environments)
rails app:db_stats # Print (to STDOUT) count of records in DB for each ActiveRecord model
rails app:template # Applies the template supplied by LOCATION=(/path/to/template) or URL
rails app:update # Update configs and some other initially generated files (or use just update:configs or update:bin)
# Dev tasks (useful in local development only)
...snip...