第12回: ユーザー認証(1)からの続きです。 ルーティングの修正 config/routes.rb を開いて、次のように修正します。 Nchak::Application.routes.draw do root :to => 'welcome#index' devise_for :users get 'tasks', :to => 'tasks#index', :as => :user_root resources :tasks, :only => [ :index, :create ] do put :finish, :on => :member put :unfinish, :on => :member get :done, :on => :collection end end devise_for :users という記述によりユーザー登録フォームやログインフォームへの経路が登録さ