Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
b1b3a020
Unverified
Commit
b1b3a020
authored
Jun 15, 2023
by
Josh Powell
Committed by
GitHub
Jun 15, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(rails): add some aliases (#11739)
parent
14f0f297
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
README.md
plugins/rails/README.md
+4
-1
rails.plugin.zsh
plugins/rails/rails.plugin.zsh
+4
-1
No files found.
plugins/rails/README.md
View file @
b1b3a020
...
@@ -40,7 +40,10 @@ plugins=(... rails)
...
@@ -40,7 +40,10 @@ plugins=(... rails)
|
`rn`
|
`rails notes`
| Search for notes (
`FIXME`
,
`TODO`
) in code comments |
|
`rn`
|
`rails notes`
| Search for notes (
`FIXME`
,
`TODO`
) in code comments |
|
`rp`
|
`rails plugin`
| Run a Rails plugin command |
|
`rp`
|
`rails plugin`
| Run a Rails plugin command |
|
`rr`
|
`rails routes`
| List all defined routes |
|
`rr`
|
`rails routes`
| List all defined routes |
|
`rrg`
|
`rails routes \| grep`
| List and filter the defined routes |
|
`rrc`
|
`rails routes --controller`
| List and filter routes mapped to specific controller |
|
`rre`
|
`rails routes --expanded`
| List all defined routes in expanded table mode |
|
`rrg`
|
`rails routes --grep`
| List and filter the defined routes |
|
`rru`
|
`rails routes --unused`
| List unused routes |
|
`rs`
|
`rails server`
| Launch a web server |
|
`rs`
|
`rails server`
| Launch a web server |
|
`rsb`
|
`rails server --bind`
| Launch a web server binding it to a specific IP |
|
`rsb`
|
`rails server --bind`
| Launch a web server binding it to a specific IP |
|
`rsd`
|
`rails server --debugger`
| Launch a web server with debugger |
|
`rsd`
|
`rails server --debugger`
| Launch a web server with debugger |
...
...
plugins/rails/rails.plugin.zsh
View file @
b1b3a020
...
@@ -68,7 +68,10 @@ alias rmd='rails middleware'
...
@@ -68,7 +68,10 @@ alias rmd='rails middleware'
alias
rn
=
'rails notes'
alias
rn
=
'rails notes'
alias
rp
=
'rails plugin'
alias
rp
=
'rails plugin'
alias
rr
=
'rails routes'
alias
rr
=
'rails routes'
alias
rrg
=
'rails routes | grep'
alias
rrc
=
'rails routes --controller'
alias
rre
=
'rails routes --expanded'
alias
rrg
=
'rails routes --grep'
alias
rru
=
'rails routes --unused'
alias
rs
=
'rails server'
alias
rs
=
'rails server'
alias
rsb
=
'rails server --bind'
alias
rsb
=
'rails server --bind'
alias
rsd
=
'rails server --debugger'
alias
rsd
=
'rails server --debugger'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment