When running rake routes I see:
Prefix Verb URI Pattern Controller#Action
articles GET /articles(.:format)
It let's you use shortcuts such as new_article_path
or new_article_url
in your controllers and views. These come in very handy when doing things like redirecting users to a specific page or generating dynamic links.
You can change the prefix by adding the as:
option in your routes.rb file. For example:
GET '/new', to: 'articles#new', as: 'my_new_article`
This would change the prefix to my_new_article
.