jets routes
Usage
jets routes
Description
Print out your application routes.
Example
$ jets routes
+--------+----------------+--------------------+
| Verb | Path | Controller#action |
+--------+----------------+--------------------+
| GET | posts | posts#index |
| GET | posts/new | posts#new |
| GET | posts/:id | posts#show |
| POST | posts | posts#create |
| GET | posts/:id/edit | posts#edit |
| PUT | posts/:id | posts#update |
| DELETE | posts/:id | posts#delete |
| ANY | *catchall | jets/public#show |
+--------+----------------+--------------------+
$
Options
[--noop], [--no-noop]
Edit this page
See a typo or an error? You can improve this page. This website is available on GitHub, and contributions are encouraged and welcomed. We love pull requests from you!
- Suggest an edit to this page (here's the contributing guide).
- Open an issue about this page to report a problem.