1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Forgot to check in this new file

This commit is contained in:
wycats 2010-07-27 20:38:26 -07:00
parent 123eb25fd1
commit aa24ea41d0

View file

@ -0,0 +1,13 @@
module ActionDispatch
class BestStandardsSupport
def initialize(app)
@app = app
end
def call(env)
status, headers, body = @app.call(env)
headers["X-UA-Compatible"] = "IE=Edge,chrome=1"
[status, headers, body]
end
end
end