ruby on rails - routing error on something/new -
i'm receiving action controller exception on 'new' path of http://bob.dev/assessments/new . added devise , sextant project , path that's giving me issue working previously. i'm doing wrong , stand little getting right. thanksyou! the exception: uninitialized constant errorscontroller (actioncontroller::routingerror) the routes: bob::application.routes.draw devise_for :users mount_sextant # sextant gem ##################### match '*not_found' => 'errors#handle404' # visit http://bob.dev/rails/routes match "*path" => 'errors#handle404' ################################### # resources :users # authentication scratch ##### # resources :sessions ################################### root :to => "assessments#index" resources :assessments end and finally, output http://bob.dev/rails/...