diff --git a/README.md b/README.md index 64586b6..1d2b57c 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,18 @@ [Sinatra](http://www.sinatrarb.com/) clone for [Crystal](http://www.crystal-lang.org). -Kemal is under heavy development and supports Crystal 0.9.0! +Kemal is under heavy development and currently supports Crystal 0.9.0. + +# Installation + +Add it to your ```shard.yml``` + +```yml +dependencies: + kemal: + github: sdogruyol/kemal + branch: master +``` ## Status diff --git a/samples/hello_world.cr b/samples/hello_world.cr index ec6359a..a4366eb 100644 --- a/samples/hello_world.cr +++ b/samples/hello_world.cr @@ -1,4 +1,4 @@ -require "../libs/kemal" +require "kemal" get "/" do "Hello World!"