Uygulamama cihaz geliştirdim ve aşağıdakileri uyguladım 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>
Koştum rake routes
ve tüm yolları geçerli olduğunu doğruladı.
Ayrıca, routes.rb
dosyamda vardevise_for :users
ve root :to => "home#index"
.
"Oturumu kapat" bağlantısını tıkladığınızda aşağıdaki yönlendirme hatasını alıyorum:
No route matches "/users/sign_out"
Hataya neden olan herhangi bir fikir var mı?
gem 'devise', :git => 'git://github.com/plataformatec/devise.git'
. Yine de hiçbir şey yapmadı.