class Goodguide::Health::NewlineMiddleware

Public Class Methods

new(app) click to toggle source
# File lib/goodguide/health/newline_middleware.rb, line 4
def initialize(app)
  @app = app
end

Public Instance Methods

call(env) click to toggle source
# File lib/goodguide/health/newline_middleware.rb, line 8
def call(env)
  status, headers, body = @app.call(env)

  unless body.last.end_with?("\n")
    body.push("\n")
  end

  [status, headers, body]
end