Skip to content

Instantly share code, notes, and snippets.

@elcuervo
Created February 24, 2011 19:25
Show Gist options
  • Save elcuervo/842706 to your computer and use it in GitHub Desktop.
Save elcuervo/842706 to your computer and use it in GitHub Desktop.
on path("a") do
on path("b") do
on path("c") do
on post do
res.write "c - POST"
end
on get do
res.write "c - GET"
end
on segment do |a|
res.write a
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment