Class/Module Index [+]

Quicksearch

ActionDispatch::Session::StaleSessionCheck

Public Instance Methods

extract_session_id(env) click to toggle source
# File lib/action_dispatch/middleware/session/abstract_store.rb, line 50
def extract_session_id(env)
  stale_session_check! { super }
end
load_session(env) click to toggle source
# File lib/action_dispatch/middleware/session/abstract_store.rb, line 46
def load_session(env)
  stale_session_check! { super }
end
stale_session_check!() click to toggle source
# File lib/action_dispatch/middleware/session/abstract_store.rb, line 54
def stale_session_check!
  yield
rescue ArgumentError => argument_error
  if argument_error.message =~ %{undefined class/module ([\w:]*\w)}
    begin
      # Note that the regexp does not allow $1 to end with a ':'
      $1.constantize
    rescue LoadError, NameError => const_error
      raise ActionDispatch::Session::SessionRestoreError, "Session contains objects whose class definition isn't available.\nRemember to require the classes for all objects kept in the session.\n(Original exception: #{const_error.message} [#{const_error.class}])\n"
    end
    retry
  else
    raise
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.