mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
[ci skip] Fix line break on command line guide
This commit is contained in:
parent
cb976371e4
commit
b38c9eb631
1 changed files with 2 additions and 6 deletions
|
@ -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`.
|
||||
|
||||
|
|
Loading…
Reference in a new issue