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