router
router copied to clipboard
Ruby/Rack HTTP router
Hello! I'm following the README guide from the main branch (which points to v2.0.0.alpha6 now). The **Testing** section shows an example of how it does not recognize a POST route...
Relates to https://github.com/hanami/controller/pull/377
## Feature Introduce monitoring concept in `Hanami::Router`. Added a new dependency for the router that can be specified via the `monitoring:` keyword argument for `Hanami::Router#initialize`. The object must respond to...
- Allow passing mime types to the constructor of a Parser class - Change `Parser#mime_types` to be `Parser.mime_types` - Allow passing parser id along with additional mime types as an...
I encountered this issue while upgrading from 1.3.2 to 2.0.0.beta2 in a non-hanami app. I updated my routing to something like this: ```ruby scope 'test_sessions' do get '/:id', to: ......
I use hanami router in a non-hanami application, and I found the current prefix handling to be very confusing. I decided to test its behavior using the following simple `config.ru`...
According to [the spec](https://www.rfc-editor.org/rfc/rfc9110.html#name-405-method-not-allowed) "The origin server MUST generate an [Allow](https://www.rfc-editor.org/rfc/rfc9110.html#field.allow) header field in a 405 response containing a list of the target resource's currently supported methods." Currently the 405...
This PR in order to avoid stale GitHub Actions versions.
I'm opening this issue to ask about plans to support Rack 3 which was recently released. Hanami Router and its dependency, Hanami Devtools, currently depend on `rack` `~> 2`. From...