shard-kemal/README.md
2015-10-23 22:43:33 +03:00

30 lines
506 B
Markdown

# Kemal
[Sinatra](http://www.sinatrarb.com/) clone for [Crystal](http://www.crystal-lang.org).
Kemal is under heavy development and currently supports Crystal 0.9.0.
# Super Simple <3
```ruby
get "/" do
"Hello World!"
end
```
Go to *http://localhost:3000*
# Installation
Add it to your ```shard.yml```
```yml
dependencies:
kemal:
github: sdogruyol/kemal
branch: master
```
## Status
Basic `get`, `put`, `post` and `head` routes can be matched, and request parameters can be obtained.