diff options
author | yui-knk <spiketeika@gmail.com> | 2014-11-08 11:22:42 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2014-11-08 11:22:42 +0900 |
commit | b38c9eb631f8505412f7eab93b11cdf69fd85c26 (patch) | |
tree | 2655970ccbed78464e5b74f2725b76859f2dfadd | |
parent | cb976371e43c90a995afb1224c325c7eed4fc194 (diff) | |
download | rails-b38c9eb631f8505412f7eab93b11cdf69fd85c26.tar.gz rails-b38c9eb631f8505412f7eab93b11cdf69fd85c26.tar.bz2 rails-b38c9eb631f8505412f7eab93b11cdf69fd85c26.zip |
[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`. |