module ActionDispatch::Routing::Mapper::HttpHelpers

def get(*args, &block)

get 'bacon', to: 'food#bacon'

[match](rdoc-ref:Base#match)
Define a route that only recognizes HTTP GET. For supported arguments, see
def get(*args, &block)
  map_method(:get, args, &block)
end