Public Instance methods
clear_session()
Clear data from the session, and update the request environment so that the session cookie will use a new creation timestamp instead of the previous creation timestamp.
[show source]
# File lib/roda/plugins/sessions.rb 216 def clear_session 217 session.clear 218 env.delete(SESSION_CREATED_AT) 219 env.delete(SESSION_UPDATED_AT) 220 nil 221 end