Class: Sprockets::YUICompressor
- Inherits:
-
Object
- Object
- Sprockets::YUICompressor
- Defined in:
- lib/sprockets/yui_compressor.rb
Overview
Public: YUI compressor.
To accept the default options
environment.register_bundle_processor 'application/javascript',
Sprockets::YUICompressor
Or to pass options to the YUI::JavaScriptCompressor class.
environment.register_bundle_processor 'application/javascript',
Sprockets::YUICompressor.new(munge: true)
Constant Summary collapse
- VERSION =
'1'
Instance Attribute Summary collapse
-
#cache_key ⇒ Object
readonly
Returns the value of attribute cache_key.
Class Method Summary collapse
- .cache_key ⇒ Object
- .call(input) ⇒ Object
-
.instance ⇒ Object
Public: Return singleton instance with default options.
Instance Method Summary collapse
- #call(input) ⇒ Object
-
#initialize(options = {}) ⇒ YUICompressor
constructor
A new instance of YUICompressor.
Constructor Details
#initialize(options = {}) ⇒ YUICompressor
Returns a new instance of YUICompressor.
38 39 40 41 |
# File 'lib/sprockets/yui_compressor.rb', line 38 def initialize( = {}) @options = @cache_key = "#{self.class.name}:#{Autoload::YUI::Compressor::VERSION}:#{VERSION}:#{DigestUtils.digest()}".freeze end |
Instance Attribute Details
#cache_key ⇒ Object (readonly)
Returns the value of attribute cache_key.
36 37 38 |
# File 'lib/sprockets/yui_compressor.rb', line 36 def cache_key @cache_key end |
Class Method Details
.cache_key ⇒ Object
32 33 34 |
# File 'lib/sprockets/yui_compressor.rb', line 32 def self.cache_key instance.cache_key end |
.call(input) ⇒ Object
28 29 30 |
# File 'lib/sprockets/yui_compressor.rb', line 28 def self.call(input) instance.call(input) end |
.instance ⇒ Object
Public: Return singleton instance with default options.
Returns YUICompressor object.
24 25 26 |
# File 'lib/sprockets/yui_compressor.rb', line 24 def self.instance @instance ||= new end |
Instance Method Details
#call(input) ⇒ Object
43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/sprockets/yui_compressor.rb', line 43 def call(input) data = input[:data] case input[:content_type] when 'application/javascript' Autoload::YUI::JavaScriptCompressor.new(@options).compress(data) when 'text/css' Autoload::YUI::CssCompressor.new(@options).compress(data) else data end end |