Skip to content

Instantly share code, notes, and snippets.

@rishavs
Created June 29, 2018 19:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rishavs/8908ddcd4d1934888156e8a318211e09 to your computer and use it in GitHub Desktop.
Save rishavs/8908ddcd4d1934888156e8a318211e09 to your computer and use it in GitHub Desktop.
def self.run(method, url, ctx)
url = clean(url)
path = {url, method}
case path
when {"/hola/", "GET"}
ctx.response.print "Yo buddy!"
when {"/about/", "GET"}
ctx.response.content_type = "text/html; charset=utf-8"
ctx.response.print Cove::Layout.render(Cove::Views.about)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment