not sure where to start with this one, but basically my app crashes the very first time I try to login or logout immediately after resetting the server. Every attempt after that works fine until I reset the server again. If it helps, I'm not using the standard Devise login view, I'm using my own form like so...
<% if user_signed_in? %>
<%= form_for("user", :url => destroy_user_session_path, :method => "delete") do |f| %>
<%= f.submit 'Sign Out' %>
<% end %>
<% else %>
<%= form_for("user", :url => user_session_path, :html => { :class => "form-search"}) do |f| %>
<%= f.text_field :email, :value => "email" %>
<%= f.text_field :password, :value => "password"%>
<%= f.submit 'Sign in' %>
<% end %>
<% end %>
I suspect this problem's gonna be a doozie to troubleshoot, so any suggestions that might point me in the right direction, even if they're total shots in the dark, would help a lot. Thanks so much in advance for all your wisdom!
route set not finalizedexception you can probably doActionController::Routing::Routes.finalize!to remedy it. Others mention that loadingrspecmight generate that error (you should put rspec gems in its own group inGemfileto prevent it from being loaded in your normal Rails environment). – S. Christoffer Eliesen Jan 24 '12 at 16:55