Sha256: f484afe325cb4cd3f59712a34be4efb2adb15b28c20e6212ffabf35b462411cf
Contents?: true
Size: 354 Bytes
Versions: 2
Compression:
Stored size: 354 Bytes
Contents
module ActionController::Integration::Runner # TODO: Make this a rails patch def method_missing(sym, *args, &block) reset! unless @integration_session if @integration_session.respond_to?(sym) returning @integration_session.__send__(sym, *args, &block) do copy_session_variables! end else super end end end
Version data entries
2 entries across 2 versions & 2 rubygems