Class: Hanami::Assets::Compilers::Less Private

Inherits:
Hanami::Assets::Compiler show all
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

Since:

  • 0.3.0

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.

Since:

  • 0.3.0

/\.(less)\z/.freeze

Constants inherited from Hanami::Assets::Compiler

Hanami::Assets::Compiler::COMPILE_PATTERN, Hanami::Assets::Compiler::DEFAULT_PERMISSIONS

Class Method Summary collapse

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.

Returns:

  • (Boolean)

Since:

  • 0.3.0



17
18
19
# File 'lib/hanami/assets/compilers/less.rb', line 17

def self.eligible?(name)
  name.to_s =~ EXTENSIONS
end