patch(*args, &block)
public
Define a route that only recognizes HTTP PATCH. For supported
arguments, see [match](rdoc-ref:Base#match)
patch 'bacon', to: 'food#bacon'
# File actionpack/lib/action_dispatch/routing/mapper.rb, line 748
def patch(*args, &block)
map_method(:patch, args, &block)
end