Skip to content

Instantly share code, notes, and snippets.

@purbon
Created November 20, 2012 14:29
Show Gist options
  • Save purbon/4118240 to your computer and use it in GitHub Desktop.
Save purbon/4118240 to your computer and use it in GitHub Desktop.
New HTTP verbs for sinatra
def self.add_new_verb(verb)
(class << self; self; end).send(:define_method, verb.downcase.to_sym) do |path, opts={}, &block|
route(verb.upcase, path, opts, &block)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment