Skip to content

Instantly share code, notes, and snippets.

@moeffju
Created June 22, 2012 21:02
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 moeffju/2975184 to your computer and use it in GitHub Desktop.
Save moeffju/2975184 to your computer and use it in GitHub Desktop.
Happy HelloWorld!
require 'happy'
class TestApp < Happy::Controller
def route
on 'hello-:name' do
"Hello, #{params['name']}!"
end
"Try #{link_to 'this', current_url('hello-hendrik')}!"
end
end
run TestApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment