Skip to content

PavloBilyak/sprockets-exporters_pack

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

6 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Sprockets::ExportersPack

This gem aims to add some exporters to sprockets.

Currently, it has:

  • a Brotli exporter, which can be used with ngx_brotli.

Installation

Add this line to your Gemfile:

gem 'sprockets-exporters_pack'

You probably need these too, as sprockets hasn't been updated yet:

gem 'sprockets', '>= 4.0.0.beta3', github: 'rails/sprockets'
gem 'sprockets-rails', '>= 3.1.0'
$ bundle install

Usage

With Rails, in application.rb:

config.assets.configure do |env|
  env.register_exporter %w(text/css application/javascript image/svg+xml), Sprockets::ExportersPack::BrotliExporter
end

Without Rails:

env = Sprockets::Environment.new
env.register_exporter %w(text/css application/javascript image/svg+xml), Sprockets::ExportersPack::BrotliExporter

Contributing

Yes please! Open an issue with exporters you want to see added.

License

The gem is available as open source under the terms of the MIT License.

About

Adds a Brotli exporter to Sprockets ๐Ÿ—œ

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%