mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 05:40:08 +00:00
parent
47d313c904
commit
98ed582e6a
2 changed files with 8 additions and 0 deletions
|
@ -49,6 +49,12 @@ plugins=(... rails)
|
||||||
| `rt` | `rails test` | Run Rails tests |
|
| `rt` | `rails test` | Run Rails tests |
|
||||||
| `ru` | `rails runner` | Run Ruby code in the context of Rails |
|
| `ru` | `rails runner` | Run Ruby code in the context of Rails |
|
||||||
|
|
||||||
|
### Foreman
|
||||||
|
|
||||||
|
| Alias | Command | Description |
|
||||||
|
| ------ | --------------- | ----------------------------------------- |
|
||||||
|
| `fmns` | `foreman start` | Interact with your Rails app from the CLI |
|
||||||
|
|
||||||
### Utility aliases
|
### Utility aliases
|
||||||
|
|
||||||
| Alias | Command | Description |
|
| Alias | Command | Description |
|
||||||
|
|
|
@ -77,6 +77,8 @@ alias rsts='rails stats'
|
||||||
alias rt='rails test'
|
alias rt='rails test'
|
||||||
alias ru='rails runner'
|
alias ru='rails runner'
|
||||||
|
|
||||||
|
# Foreman aliases
|
||||||
|
alias fmns='foreman start'
|
||||||
|
|
||||||
# Rake aliases
|
# Rake aliases
|
||||||
alias rkdc='rake db:create'
|
alias rkdc='rake db:create'
|
||||||
|
|
Loading…
Reference in a new issue