mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
feat(rails): add rta
alias (#11553)
This commit is contained in:
parent
3ea0e0d234
commit
92387d9fff
2 changed files with 2 additions and 0 deletions
|
@ -47,6 +47,7 @@ plugins=(... rails)
|
||||||
| `rsp` | `rails server --port` | Launch a web server and specify the listening port |
|
| `rsp` | `rails server --port` | Launch a web server and specify the listening port |
|
||||||
| `rsts` | `rails stats` | Print code statistics |
|
| `rsts` | `rails stats` | Print code statistics |
|
||||||
| `rt` | `rails test` | Run Rails tests |
|
| `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 |
|
| `ru` | `rails runner` | Run Ruby code in the context of Rails |
|
||||||
|
|
||||||
### Foreman
|
### Foreman
|
||||||
|
|
|
@ -75,6 +75,7 @@ alias rsd='rails server --debugger'
|
||||||
alias rsp='rails server --port'
|
alias rsp='rails server --port'
|
||||||
alias rsts='rails stats'
|
alias rsts='rails stats'
|
||||||
alias rt='rails test'
|
alias rt='rails test'
|
||||||
|
alias rta='rails test:all'
|
||||||
alias ru='rails runner'
|
alias ru='rails runner'
|
||||||
|
|
||||||
# Foreman aliases
|
# Foreman aliases
|
||||||
|
|
Loading…
Reference in a new issue