From 328629b6f41efd6a46ae374e7c781c54766cb333 Mon Sep 17 00:00:00 2001 From: Sdogruyol Date: Fri, 23 Oct 2015 21:50:19 +0300 Subject: [PATCH] Added installation instructions --- README.md | 13 ++++++++++++- samples/hello_world.cr | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) 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!"