Browse Source

docs(rails): reflect changes to aliases (#9809)

Chuck 4 years ago
parent
commit
e9f805a3ca
1 changed files with 2 additions and 2 deletions
  1. 2 2
      plugins/rails/README.md

+ 2 - 2
plugins/rails/README.md

@@ -21,6 +21,8 @@ plugins=(... rails)
 | `rgen`| `rails generate`           | Generate boilerplate code                          |
 | `rgm` | `rails generate migration` | Generate a db migration                            |
 | `rp`  | `rails plugin`             | Run a Rails plugin command                         |
+| `rr`  | `rails routes`             | List all defined routes                            |
+| `rrg` | `rails routes \| grep`     | List and filter the defined routes                 |
 | `ru`  | `rails runner`             | Run Ruby code in the context of Rails              |
 | `rs`  | `rails server`             | Launch a web server                                |
 | `rsd` | `rails server --debugger`  | Launch a web server with debugger                  |
@@ -43,8 +45,6 @@ plugins=(... rails)
 | `rdsl`  | `rake db:schema:load`           | Load the database schema                               |
 | `rlc`   | `rake log:clear`                | Clear Rails logs                                       |
 | `rn`    | `rake notes`                    | Search for notes (`FIXME`, `TODO`) in code comments    |
-| `rr`    | `rake routes`                   | List all defined routes                                |
-| `rrg`   | `rake routes \| grep`           | List and filter the defined routes                     |
 | `rt`    | `rake test`                     | Run Rails tests                                        |
 | `rmd`   | `rake middleware`               | Interact with Rails middlewares                        |
 | `rsts`  | `rake stats`                    | Print code statistics                                  |