Skip to content

Instantly share code, notes, and snippets.

@fairchild
Created February 16, 2009 09:06
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 fairchild/65083 to your computer and use it in GitHub Desktop.
Save fairchild/65083 to your computer and use it in GitHub Desktop.
def any_verb(path, block)
get path, &block
post path, &block
put path, &block
delete path, &block
head path, &block
end
any_verb "/" do
"foo"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment