diff options
author | Jon Atack <jonnyatack@gmail.com> | 2015-11-05 12:14:09 +0100 |
---|---|---|
committer | Jon Atack <jonnyatack@gmail.com> | 2015-11-05 12:14:09 +0100 |
commit | 8fee1515f6f647717e6190811960fdc36477ede7 (patch) | |
tree | 527da1fd73e6752b99afaa9ee6270ab32a8b8318 /railties/.gitignore | |
parent | 175515ad8bdbe1f87a52c3023d35d434b48e35fc (diff) | |
download | rails-8fee1515f6f647717e6190811960fdc36477ede7.tar.gz rails-8fee1515f6f647717e6190811960fdc36477ede7.tar.bz2 rails-8fee1515f6f647717e6190811960fdc36477ede7.zip |
Fix `static_cache_control` deprecation warning
1. Fix the message by wrapping the value in missing quotes and adding
the missing backtick at the end. Finally, :lipstick: by adding a space
inside the curly braces.
Before:
`config.public_file_server.headers = {'Cache-Control' => public,
max-age=31536000}
Now:
`config.public_file_server.headers = { 'Cache-Control' => 'public,
max-age=31536000' }`
2. Display `static_cache_control` instead of static_cache_control. This
follows what the 2 neighboring methods are doing.
3. Use strip_heredoc to improve the code formatting and readability
like the 2 neighboring methods and wrap to 80 characters.
Diffstat (limited to 'railties/.gitignore')
0 files changed, 0 insertions, 0 deletions