I've installed devise on my app and applied the following in my application.html.erb file:

<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>

I ran rake routes and confirmed that all the routes are valid.

Also, in my routes.rb file I have devise_for :users and root :to => "home#index" so this is driving me insane.

I get the following routing error when clicking the "Sign out" link:

No route matches "/users/sign_out"

I can't figure out what's causing the routing error! Please help!

Thank you for reading.

link|improve this question

Did you restart your app after adding the routes? Route changes only become effective on startup. – Thilo-Alexander Ginkel Jul 2 '11 at 13:33
1  
Yes. Just did it again to be safe. Also, I read somewhere else on Stack that it could be an issue with the newest devise gem not being compatible with Rails 3.0.3 so I tried changing my devise gem from 1.4.2 to gem 'devise', :git => 'git://github.com/plataformatec/devise.git'. That did nothing though. – mmichael Jul 2 '11 at 13:38
Wouldn't changing the entry in the Gemfile just get you an ever newer version of Devise? Have you tried specifying a lower version number? – Leo Cassarani Jul 2 '11 at 14:39
Could you post your routes.rb file – Felix Jul 2 '11 at 14:45
1  
The second answer by Jessie below worked perfectly. – mmichael Jul 4 '11 at 15:15
show 3 more comments
feedback

18 Answers

up vote 162 down vote accepted

I think the route for signing out is a DELETE method. This means that your sign out link needs to look like this <%= link_to "Sign out", destroy_user_session_path, :method => :delete %>. Yours doesn't include the :method => :delete part. Also, please note that for this to work you must also include <%= javascript_include_tag :defaults %> in your layout file application.html.erb) for this to work.

link|improve this answer
1  
I can safely say I've never had to do that in any of my Rails apps. link_to "Sign out", destroy_user_session_path has always been good enough for me. – Leo Cassarani Jul 2 '11 at 14:37
4  
I did the test and it works for me. Don't forget that things change from one version to another (be it in Rails or Devise). Besides, logging out is state-changing behaviour which should not be done using GET methods (in my humble opinion). – Jessie Dedecker Jul 2 '11 at 14:44
7  
For more information, the rationale why this was changed in the latest version of Devise is described here and here. – Jessie Dedecker Jul 3 '11 at 8:57
This worked for me. Thank you Jessie! – mmichael Jul 4 '11 at 15:14
4  
I ran into this same issue and Jessie's suggestion worked for me. I expect anyone who is running through the devise railscast to eventually end up here due to this change... – johnnygoodman Sep 18 '11 at 0:44
show 3 more comments
feedback

I changed this line in devise.rb:

config.sign_out_via = :delete

to

config.sign_out_via = :get

and it started working for me.

link|improve this answer
This would be how to do it if you did not want to add a custom path or use delete – Travis Pessetto Jul 29 '11 at 18:06
6  
The way it was done before was to sign out using "GET /users/sign_out", but they changed it to "DELETE" to make it more RESTful. The author explained that a GET shouldn't make changes to the server such as logging out. – jonallard Aug 26 '11 at 22:08
this worked for me. Whilst I appreciate it's not a best practise, the other answers failed. I can't see why!! – Mild Fuzz Mar 18 at 11:08
It is also possible to use an array if you wish to support multiple methods. For example: config.sign_out_via = [ :post, :delete ] or devise_for :users, :sign_out_via => [ :post, :delete ], as described in devise/rails/routes.rb. – Hosam Aly May 10 at 12:53
feedback

You probably didn't include jquery_ujs javascript file. Make sure you are using the latest version of jquery-ujs : https://github.com/rails/jquery-ujs and the last files available :

rails generate jquery:install

You should not have any more rails.js file. If you do, you're probably out-of-date. Make sure also this file is loaded with defaults, in config/application.rb

config.action_view.javascript_expansions[:defaults] = %w(jquery.min jquery_ujs)

(Again, you should not have rails.js file here). Finally, add the link as documented on devise wiki (https://github.com/plataformatec/devise/wiki/How-To:-Add-sign_in,-sign_out,-and-sign_up-links-to-your-layout-template)(haml-style) :

= link_to('Logout', destroy_user_session_path, :method => 'delete')

And everything will be fine.

link|improve this answer
1  
I had :method => 'delete' in my link_to, the problem was jquery_ujs not included, this solution solved my problem. Remember to put gem 'jquery-rails' in your gemfile. – Rob Bazinet Sep 22 '11 at 14:08
you're a genius and i wish i could +10 this post... – jaytr0n Dec 10 '11 at 21:28
feedback

Try adding a new route to devise/sessions#destroy and linking to that. Eg:

routes.rb
devise_for :users do
  get 'logout' => 'devise/sessions#destroy'
end

view:

<%= link_to "Logout", logout_path %>
link|improve this answer
Getting the same error as mmichael. This above test works for me. – rtfminc Jul 3 '11 at 6:42
I also had the same error as mmichael. The solution above will work but it's not how it's supposed to be fixed. The default routes in Devise already include the signing out route as a DELETE method. You should normally not need to change the default routes themselves. That's why you can fix it by simply adding a separate parameter to the link_to call, as described in the other answer. – Jessie Dedecker Jul 3 '11 at 8:54
You don't have to add a route to the route.rb fiile, devise lets you change the method in devise.rb which is in the /confit/initializers/ directory. – Travis Pessetto Jul 29 '11 at 18:07
1  
This worked for me, too. None of the other methods did. – Clay Aug 9 '11 at 16:00
Never ever have logout path as GET. – Jagira Dec 3 '11 at 7:44
feedback

With one exception, Jessie's answer worked for me:

<%= link_to "Sign out", destroy_user_session_path, :method => :delete %>

change:

:delete

... to:

'delete'

So the code that worked for me is:

<%= link_to "Sign out", destroy_user_session_path, :method => 'delete' %>
link|improve this answer
feedback

Add:

  <%= csrf_meta_tag %>  and 
  <%= javascript_include_tag :defaults %>  to layouts

Use these link_to tags

 link_to 'Sign out', destroy_user_session_path, :method => :delete

  or

 link_to 'Sign out', '/users/sign_out', :method => :delete

In routes add:

  devise_for :users do
    get '/users/sign_out' => 'devise/sessions#destroy'
  end
link|improve this answer
feedback

Use it in your routes.rb file:

devise_for :users do
    get '/users/sign_out' => 'devise/sessions#destroy'
end
link|improve this answer
feedback

Well, guys for me it was only remove the :method => :delete

<%= link_to('Sign out', destroy_user_session_path) %>
link|improve this answer
feedback

I had the same problem with rails 3.1.0, and I solved adding in file the followings lines:

app/assets/javascripts/application.js
//= require_tree
//= require jquery
//= require jquery_ujs
link|improve this answer
feedback

If you are using Rails 3.1 make sure your application.html.erb sign out looks like:

<%= link_to "Sign out", destroy_user_session_path, :method => :delete %>

And that your javascript include line looks like the following

<%= javascript_include_tag 'application' %>

My guess is that some gems overwrite the new structure of the default.js location.

link|improve this answer
Thanks! This was driving me crazy! – Dorian Jan 12 at 12:50
feedback

Check it out with source code in github:

https://github.com/plataformatec/devise/commit/adb127bb3e3b334cba903db2c21710e8c41c2b40#lib/generators/templates/devise.rb (date : June 27, 2011 )

  • # The default HTTP method used to sign out a resource. Default is :get. 188
  • # config.sign_out_via = :get 187
  • # The default HTTP method used to sign out a resource. Default is :delete. 188
  • config.sign_out_via = :delete
link|improve this answer
feedback

I want to add to this even though it's a bit old.

the "sign_out" link didn't work, despite having :method => :delete.

The comment indicating that <%= javascript_include_tag :defaults %> must be included reminded me I had recently added JQuery javascript and used simple tags to include them.

When I moved them from after the :defaults to before, the sign_out started working again.

Hopefully this helps someone.

link|improve this answer
feedback

This means you haven't generated the jquery files after you have installed the jquery-rails gem. So first you need to generate it.

rails generate devise:install

First Option:

This means either you have to change the following line on /config/initializers/devise.rb

config.sign_out_via = :delete to config.sign_out_via = :get

Second Option:

You only change this line <%= link_to "Sign out", destroy_user_session_path %> to <%= link_to "Sign out", destroy_user_session_path, :method => :delete %> on the view file.

Usually :method => :delete is not written by default.

link|improve this answer
thx deepak......this also works for me :) – manish nautiyal Feb 22 at 10:40
feedback

None of the above worked for me; this is what did (with Rails 3.0 and Devise 1.4.2):

  1. Make sure your page loads rails.js
  2. Use this param: 'data-method' => 'delete'
  3. Good idea to add this param: :rel => 'nofollow'
link|improve this answer
feedback

the problem begin with rails 3.1... in /app/assets/javascript/ just look for application.js, if the file doesn't exists create a file with that name i don't know why my file disappear or never was created on "rails new app"... that file is the instance for jquery... regards

link|improve this answer
feedback

Other option is to configure the logout to be a GET instead a DELETE, you can do that adding the following line on /config/initializers/devise.rb

config.sign_out_via = :get

But as Steve Klabnik wrote on his blog (http://blog.steveklabnik.com/2011/12/11/devise-actioncontroller-routingerror-no-route-matches-get-slash-users-slash-sign-out.html) try to use DELETE because of the semantic of this method.

link|improve this answer
feedback

Yes you should add :method => :delete end of the <%= link_to "Sign out", destroy_user_session_path,

link|improve this answer
feedback

See if your routes.rb has a "resource :users" before a "devise_for :users" then try swapping them:

  1. Works

    • devise_for :users
    • resources :users
  2. Fails

    • resources :users
    • devise_for :users
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.