Class: Hanami::Assets::Compilers::Less Private
- Inherits:
-
Hanami::Assets::Compiler
- Object
- Hanami::Assets::Compiler
- Hanami::Assets::Compilers::Less
- Defined in:
- lib/hanami/assets/compilers/less.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
LESS compiler
Constant Summary collapse
- EXTENSIONS =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
/\.(less)\z/
Constants inherited from Hanami::Assets::Compiler
Hanami::Assets::Compiler::COMPILE_PATTERN, Hanami::Assets::Compiler::DEFAULT_PERMISSIONS
Class Method Summary collapse
- .eligible?(name) ⇒ Boolean private
Methods inherited from Hanami::Assets::Compiler
cache, compile, #compile, fabricate, inherited, #initialize
Constructor Details
This class inherits a constructor from Hanami::Assets::Compiler
Class Method Details
.eligible?(name) ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
15 16 17 |
# File 'lib/hanami/assets/compilers/less.rb', line 15 def self.eligible?(name) name.to_s =~ EXTENSIONS end |