Skip to content

Instantly share code, notes, and snippets.

@fairchild
Created February 16, 2009 09:06
Show Gist options
  • Select an option

  • Save fairchild/65083 to your computer and use it in GitHub Desktop.

Select an option

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