diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2014-11-08 22:55:50 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2014-11-08 22:55:50 +0530 |
commit | 981afe42df3d725f0011ab81805a5fd61ef8d1ca (patch) | |
tree | 086b750c52224a931c36712dc3a9549deec708c1 | |
parent | a153fae6d9549961a81d0e43364c2b970b42730b (diff) | |
parent | b38c9eb631f8505412f7eab93b11cdf69fd85c26 (diff) | |
download | rails-981afe42df3d725f0011ab81805a5fd61ef8d1ca.tar.gz rails-981afe42df3d725f0011ab81805a5fd61ef8d1ca.tar.bz2 rails-981afe42df3d725f0011ab81805a5fd61ef8d1ca.zip |
Merge pull request #17557 from yui-knk/fix/command_line_guide
[ci skip] Fix line break on command line guide
-rw-r--r-- | guides/source/command_line.md | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md index d113632bea..a536f00df9 100644 --- a/guides/source/command_line.md +++ b/guides/source/command_line.md @@ -368,8 +368,7 @@ Rake is Ruby Make, a standalone Ruby utility that replaces the Unix utility 'mak You can get a list of Rake tasks available to you, which will often depend on your current directory, by typing `rake --tasks`. Each task has a description, and should help you find the thing you need. -To get the full backtrace for running rake task you can pass the option -```--trace``` to command line, for example ```rake db:create --trace```. +To get the full backtrace for running rake task you can pass the option ```--trace``` to command line, for example ```rake db:create --trace```. ```bash $ bin/rake --tasks @@ -408,10 +407,7 @@ Database schema version 20110805173523 ### `assets` -You can precompile the assets in `app/assets` using `rake assets:precompile`, -and remove older compiled assets using `rake assets:clean`. The `assets:clean` -task allows for rolling deploys that may still be linking to an old asset while -the new assets are being built. +You can precompile the assets in `app/assets` using `rake assets:precompile`, and remove older compiled assets using `rake assets:clean`. The `assets:clean` task allows for rolling deploys that may still be linking to an old asset while the new assets are being built. If you want to clear `public/assets` completely, you can use `rake assets:clobber`. |