class Rack::Standards
Constants
- VERSION
Public Class Methods
new(app, type = true)
click to toggle source
# File lib/rack/standards.rb, line 3 def initialize(app, type = true) @app = app @header = case type when true "IE=Edge,chrome=1" when :builtin "IE=Edge" when false nil end end
Public Instance Methods
call(env)
click to toggle source
# File lib/rack/standards.rb, line 16 def call(env) status, headers, body = @app.call(env) headers["X-UA-Compatible"] = @header [status, headers, body] end