Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romanbsd/heroku-deflater
Enable gzip compression on heroku, but don't compress images.
https://github.com/romanbsd/heroku-deflater
Last synced: 3 months ago
JSON representation
Enable gzip compression on heroku, but don't compress images.
- Host: GitHub
- URL: https://github.com/romanbsd/heroku-deflater
- Owner: romanbsd
- License: mit
- Created: 2012-12-25T20:18:39.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2023-10-19T14:54:01.000Z (about 1 year ago)
- Last Synced: 2024-07-19T03:37:07.509Z (4 months ago)
- Language: Ruby
- Size: 57.6 KB
- Stars: 361
- Watchers: 8
- Forks: 62
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# heroku-deflater
A simple rack middleware that enables compressing of your sprockets and
webpacker assets and application responses on Heroku, while not wasting CPU
cycles on pointlessly compressing images and other binary responses.It also includes code from https://github.com/mattolson/heroku_rails_deflate
Before serving a file from disk to a gzip-enabled client, it will look for a
precompressed file in the same location that ends in ".gz". The purpose is to
avoid compressing the same file each time it is requested.## Installing
Add to your Gemfile:
gem 'heroku-deflater', :group => :production
## Contributing to heroku-deflater
* Check out the latest master to make sure the feature hasn't been implemented
or the bug hasn't been fixed yet.
* Check out the issue tracker to make sure someone already hasn't requested it
and/or contributed it.
* Fork the project.
* Start a feature/bugfix branch.
* Commit and push until you are happy with your contribution.
* Make sure to add tests for it. This is important so I don't break it in a
future version unintentionally.
* Please try not to mess with the Rakefile, version, or history. If you want to
have your own version, or is otherwise necessary, that is fine, but please
isolate to its own commit so I can cherry-pick around it.## Copyright
Copyright (c) 2012 Roman Shterenzon. See LICENSE.txt for further details.
[1]: https://github.com/rack/rack/issues/349