Commit 98ed582e authored by romanch's avatar romanch Committed by Marc Cornellà

feat(rails): add `fmns` alias for `foreman start` (#9600)

Closes #9600
parent 47d313c9
...@@ -49,6 +49,12 @@ plugins=(... rails) ...@@ -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' ...@@ -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'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment