feat(rails): add `rta` alias (#11553)

master
Zhong Zheng 3 years ago committed by GitHub
parent 3ea0e0d234
commit 92387d9fff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      plugins/rails/README.md
  2. 1
      plugins/rails/rails.plugin.zsh

@ -47,6 +47,7 @@ plugins=(... rails)
| `rsp` | `rails server --port` | Launch a web server and specify the listening port |
| `rsts` | `rails stats` | Print code statistics |
| `rt` | `rails test` | Run Rails tests |
| `rta` | `rails test:all` | Runs all Rails tests, including system tests |
| `ru` | `rails runner` | Run Ruby code in the context of Rails |
### Foreman

@ -75,6 +75,7 @@ alias rsd='rails server --debugger'
alias rsp='rails server --port'
alias rsts='rails stats'
alias rt='rails test'
alias rta='rails test:all'
alias ru='rails runner'
# Foreman aliases

Loading…
Cancel
Save