Class: Sprockets::ClosureCompressor
- Inherits:
-
Object
- Object
- Sprockets::ClosureCompressor
- Defined in:
- lib/sprockets/closure_compressor.rb
Overview
Public: Closure Compiler minifier.
To accept the default options
environment.register_bundle_processor 'application/javascript',
Sprockets::ClosureCompressor
Or to pass options to the Closure::Compiler class.
environment.register_bundle_processor 'application/javascript',
Sprockets::ClosureCompressor.new({ ... })
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 = {}) ⇒ ClosureCompressor
constructor
A new instance of ClosureCompressor.
Constructor Details
#initialize(options = {}) ⇒ ClosureCompressor
Returns a new instance of ClosureCompressor.
38 39 40 41 |
# File 'lib/sprockets/closure_compressor.rb', line 38 def initialize( = {}) @options = @cache_key = "#{self.class.name}:#{Autoload::Closure::VERSION}:#{Autoload::Closure::COMPILER_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/closure_compressor.rb', line 36 def cache_key @cache_key end |
Class Method Details
.cache_key ⇒ Object
32 33 34 |
# File 'lib/sprockets/closure_compressor.rb', line 32 def self.cache_key instance.cache_key end |
.call(input) ⇒ Object
28 29 30 |
# File 'lib/sprockets/closure_compressor.rb', line 28 def self.call(input) instance.call(input) end |
.instance ⇒ Object
Public: Return singleton instance with default options.
Returns ClosureCompressor object.
24 25 26 |
# File 'lib/sprockets/closure_compressor.rb', line 24 def self.instance @instance ||= new end |