私は自分のアプリにdeviseをインストールし、application.html.erb
ファイルに以下を適用しました:
<div id="user_nav">
<% if user_signed_in? %>
Signed in as <%= current_user.email %>. This cannot be cheese?
<%= link_to 'Sign out', destroy_user_session_path %>
<% else %>
<%= link_to 'Register', new_user_registration_path %> or <%= link_to 'Sign in', new_user_session_path %>
<% end %>
</div>
私は走りrake routes
、すべてのルートが有効であることを確認しました。
また、私のroutes.rb
ファイルにはとがdevise_for :users
ありroot :to => "home#index"
ます。
[ログアウト]リンクをクリックすると、次のルーティングエラーが発生します。
No route matches "/users/sign_out"
エラーの原因は何ですか?
gem 'devise', :git => 'git://github.com/plataformatec/devise.git'
。それでも何もしませんでした。