Class: Hanami::Assets::Compilers::Sass Private
- Inherits:
-
Hanami::Assets::Compiler
- Object
- Hanami::Assets::Compiler
- Hanami::Assets::Compilers::Sass
- Defined in:
- lib/hanami/assets/compilers/sass.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.
Sass/SCSS 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.
/\.(sass|scss)\z/
- CACHE_LOCATION =
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.
Pathname(Hanami.respond_to?(:root) ? # rubocop:disable Style/MultilineTernaryOperator Hanami.root : Dir.pwd).join('tmp', 'sass-cache')
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.
20 21 22 |
# File 'lib/hanami/assets/compilers/sass.rb', line 20 def self.eligible?(name) name.to_s =~ EXTENSIONS end |