Module: Preserve

Defined in:
lib/preserve/version.rb,
lib/preserve/callback.rb,
lib/preserve/extension.rb,
lib/preserve/session_key.rb,
lib/preserve/compatibility.rb

Defined Under Namespace

Modules: Extension Classes: Callback, SessionKey

Constant Summary collapse

VERSION =
'2.0.0'.freeze
BEFORE_METHOD =
if ActionPack::VERSION::MAJOR >= 4
  :before_action
else
  :before_filter
end
HASH_CLASS =
if ActionPack::VERSION::MAJOR >= 4
  ActionController::Parameters
else
  ActiveSupport::HashWithIndifferentAccess
end