https://github.com/frodsan/ruter
Yet another Rack web framework 🚌
https://github.com/frodsan/ruter
http rack ruby web
Last synced: 11 months ago
JSON representation
Yet another Rack web framework 🚌
- Host: GitHub
- URL: https://github.com/frodsan/ruter
- Owner: frodsan
- License: mit
- Created: 2021-08-28T07:30:35.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-03T09:11:46.000Z (over 4 years ago)
- Last Synced: 2025-03-13T22:47:15.872Z (11 months ago)
- Topics: http, rack, ruby, web
- Language: Ruby
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Ruter [](https://app.travis-ci.com/frodsan/ruter)
====
"You must buy a ticket before entering the bus" - The Inspector 🕵🏻♂️
Description
-----------
Ruter is yet another [Rack][rack] based framework, made just for fun, and built on top of [Syro][syro].
Usage
-----
Here's a minimal application:
```ruby
# config.ru
require "ruter"
Ruter.define do
get do
res.write("Hello World!")
end
end
run(Ruter) # run!
```
License
-------
Ruter is released under the [MIT License][mit].
[mit]: http://www.opensource.org/licenses/MIT
[rack]: https://github.com/rack/rack
[syro]: http://soveran.github.io/syro/