8000 Release v0.11.0 · kemalcr/kemal · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

v0.11.0

Compare
Choose a tag to compare
@sdogruyol sdogruyol released this 19 Mar 13:20
· 524 commits to master since this release

This is a major release with some breaking changes.

  • _(breaking change)_ Kemal no longer runs at startup. You need to _explicity_ run it with Kemal.run.

Example:

require "kemal"

get "/" do 
  "Hello from Kemal."
end

Kemal.run
0