When I run server browser show me something like this:
Routing Error
No route matches [GET] \"/static_pages/home\"
Try running rake routes for more informa
you should add :as keword to define XXX_path,such as root :to => 'static_pages#home'
match '/', to: 'static_pages#home', :as => :home
match '/help', to: 'static_pages#help', :as => :help
match '/about', to: 'static_pages#about', :as => :about
match '/contact', to: 'static_pages#contact', :as => :contact