Class: Hanami::Assets::Compilers::Sass Private

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

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

/\.(sass|scss)\z/.freeze

Constants inherited from Hanami::Assets::Compiler

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Hanami::Assets::Compiler

cache, compile, #compile, fabricate, inherited

Constructor Details

#initializeSass

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 a new instance of Sass.

Since:

  • 1.3.3



21
22
23
24
# File 'lib/hanami/assets/compilers/sass.rb', line 21

def initialize(*)
  super
  require 'sassc'
end

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



15
16
17
# File 'lib/hanami/assets/compilers/sass.rb', line 15

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