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