Class: Sprockets::SasscCompressor
- Inherits:
-
Object
- Object
- Sprockets::SasscCompressor
- Defined in:
- lib/sprockets/sassc_compressor.rb
Overview
Public: Sass CSS minifier.
To accept the default options
environment.register_bundle_processor 'text/css',
Sprockets::SasscCompressor
Or to pass options to the Sass::Engine class.
environment.register_bundle_processor 'text/css',
Sprockets::SasscCompressor.new({ ... })
Class Method Summary collapse
- .call(input) ⇒ Object
-
.instance ⇒ Object
Public: Return singleton instance with default options.
Instance Method Summary collapse
- #call(input) ⇒ Object
-
#initialize(options = {}) ⇒ SasscCompressor
constructor
A new instance of SasscCompressor.
Constructor Details
#initialize(options = {}) ⇒ SasscCompressor
Returns a new instance of SasscCompressor.
30 31 32 33 34 35 36 37 |
# File 'lib/sprockets/sassc_compressor.rb', line 30 def initialize( = {}) @options = { syntax: :scss, style: :compressed, source_map_contents: false, omit_source_map_url: true, }.merge().freeze end |
Class Method Details
.call(input) ⇒ Object
26 27 28 |
# File 'lib/sprockets/sassc_compressor.rb', line 26 def self.call(input) instance.call(input) end |
.instance ⇒ Object
Public: Return singleton instance with default options.
Returns SasscCompressor object.
22 23 24 |
# File 'lib/sprockets/sassc_compressor.rb', line 22 def self.instance @instance ||= new end |
Instance Method Details
#call(input) ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/sprockets/sassc_compressor.rb', line 39 def call(input) # SassC requires the template to be modifiable input_data = input[:data].frozen? ? input[:data].dup : input[:data] engine = Autoload::SassC::Engine.new(input_data, @options.merge(filename: input[:filename], source_map_file: "#{input[:filename]}.map")) css = engine.render.sub(/^\n^\/\*# sourceMappingURL=.*\*\/$/m, '') begin map = SourceMapUtils.format_source_map(JSON.parse(engine.source_map), input) map = SourceMapUtils.combine_source_maps(input[:metadata][:map], map) rescue SassC::NotRenderedError map = input[:metadata][:map] end { data: css, map: map } end |