routes.rbを以下のようにした時にエラーが出ました。
routes.rb
Rails.application.routes.draw do
root 'static_pages/home'
get 'static_pages/help'
get 'static_pages/about'
get 'static_pages/contact'
end
Missing :controller key on routes definition, please check your routes.
これは、
root ‘static_pages/home’
をroot ‘static_pages#home’
に変更することによってエラーが解消されました。
stack overflowなどをのぞいていたら、rootは特別なケースだと記されていました。
rootを使用する際には、
root ‘static_pages#home’
この形にする必要があるようです。