mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50: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 |
|
||||
| `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
|
||||
|
||||
| Alias | Command | Description |
|
||||
|
|
|
@ -77,6 +77,8 @@ alias rsts='rails stats'
|
|||
alias rt='rails test'
|
||||
alias ru='rails runner'
|
||||
|
||||
# Foreman aliases
|
||||
alias fmns='foreman start'
|
||||
|
||||
# Rake aliases
|
||||
alias rkdc='rake db:create'
|
||||
|
|
Loading…
Reference in a new issue