match(path, options=nil)
Instance Public methods
Matches a url pattern to one or more routes.
You should not use the `match` method in your router without specifying an
HTTP method.
If you want to expose your action to both GET and POST, use:
# sets :controller, :action and :id in params
match ':controller/:action/:id', via: [:get, :post]
Note that :controller, :action, :id
are interpreted as url query parameters and thus available as
params in an action.
If you want to expose y