diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2014-02-26 17:08:50 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2014-02-26 17:08:50 -0500 |
commit | 982091e88a0f550f8be8c6e02ca8a0273b6548da (patch) | |
tree | 03524d348095c36aa29f8887866d9eb439bd37e8 /guides | |
parent | 3225898513434ded93fe3abe51ba700f5bd9db84 (diff) | |
parent | 7d357b2d84845ec6982d619dc3b90a47f9845a8b (diff) | |
download | rails-982091e88a0f550f8be8c6e02ca8a0273b6548da.tar.gz rails-982091e88a0f550f8be8c6e02ca8a0273b6548da.tar.bz2 rails-982091e88a0f550f8be8c6e02ca8a0273b6548da.zip |
Merge pull request #14215 from robertomiranda/docs-rake-notes
[ci skip] Update list of files extensions in rake notes guide
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/command_line.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md index 3b80faec7f..8949ef4c78 100644 --- a/guides/source/command_line.md +++ b/guides/source/command_line.md @@ -411,7 +411,7 @@ The `doc:` namespace has the tools to generate documentation for your app, API d ### `notes` -`rake notes` will search through your code for comments beginning with FIXME, OPTIMIZE or TODO. The search is done in files with extension `.builder`, `.rb`, `.erb`, `.haml` and `.slim` for both default and custom annotations. +`rake notes` will search through your code for comments beginning with FIXME, OPTIMIZE or TODO. The search is done in files with extension `.builder`, `.rb`, `.erb`, `.haml`, `.slim`, `.css`, `.scss`, `.js`, `.coffee`, `.rake`, `.sass` and `.less` for both default and custom annotations. ```bash $ rake notes |