I can\'t seem to find it anywhere... How do I delete/destroy/reset/empty/clear a user\'s session in Rails? Not just one value but the whole thing..
add this code to your ApplicationController
def reset_session @_request.reset_session end
( Dont know why no one above just mention this code as it fixed my problem ) http://apidock.com/rails/ActionController/RackDelegation/reset_session