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..
To clear only certain parameters, you can use:
[:param1, :param2, :param3].each { |k| session.delete(k) }