Skip to content

Instantly share code, notes, and snippets.

@dyoder
Created May 10, 2009 22:53
Show Gist options
  • Save dyoder/109776 to your computer and use it in GitHub Desktop.
Save dyoder/109776 to your computer and use it in GitHub Desktop.
module HelloWorld
include Waves::Foundations::Compact
module Resources
class Map
include Hoshi::View :html4
on( :get, [ 'hello', :name ] ) { hello( captured.name ) }
def hello( name )
h1 "Hello, World"
p "Hello, my name is #{name}."
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment