class TurbolinksRender::TurbolinksRenderMiddleware

Public Class Methods

new(app) click to toggle source
# File lib/turbolinks_render.rb, line 8
def initialize(app)
  @app = app
end

Public Instance Methods

call(env) click to toggle source
# File lib/turbolinks_render.rb, line 12
def call(env)
  @status, @headers, @response = @app.call(env)
end