Skip to content

Instantly share code, notes, and snippets.

@olly
Created February 9, 2013 22:55
Show Gist options
  • Save olly/4747477 to your computer and use it in GitHub Desktop.
Save olly/4747477 to your computer and use it in GitHub Desktop.
Disable "Rack::File headers parameter replaces cache_control after Rack 1.5." warnings in Rails 3.
class Rack::File
def warn(*)
end
end
@ryanclark2
Copy link

Where do I put this file for the change to take effect?

@prodigerati
Copy link

Worked great! Thank you.

@iamryo

Put the file in your config/initializers directory.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment