Module Sass
In: lib/sass.rb
lib/sass/css.rb
lib/sass/engine.rb
lib/sass/environment.rb
lib/sass/error.rb
lib/sass/files.rb
lib/sass/plugin.rb
lib/sass/plugin/rack.rb
lib/sass/repl.rb
lib/sass/script.rb
lib/sass/script/funcall.rb
lib/sass/script/lexer.rb
lib/sass/script/parser.rb
lib/sass/script/variable.rb
lib/sass/tree/debug_node.rb
lib/sass/tree/import_node.rb
lib/sass/tree/mixin_def_node.rb
lib/sass/tree/node.rb
lib/sass/tree/variable_node.rb
Haml::Util Engine Color SyntaxError UnitConversionError StandardError Node Operation Literal UnaryOperation Funcall Variable Number String Bool EvaluationContext Node\n[lib/sass/css.rb\nlib/sass/tree/node.rb] DebugNode IfNode CommentNode ForNode MixinNode VariableNode ImportNode WhileNode MixinDefNode Repl CSS Environment Lexer Parser PropNode\n[lib/sass/css.rb\nlib/sass/tree/prop_node.rb] DirectiveNode\n[lib/sass/css.rb\nlib/sass/tree/directive_node.rb] RuleNode\n[lib/sass/css.rb\nlib/sass/tree/rule_node.rb] Rack lib/sass/repl.rb lib/sass/css.rb lib/sass/environment.rb lib/sass/error.rb lib/sass/engine.rb lib/sass/script/lexer.rb lib/sass/script/color.rb lib/sass/script/string.rb lib/sass/script/unary_operation.rb lib/sass/script/variable.rb lib/sass/script/funcall.rb lib/sass/script/operation.rb lib/sass/script/bool.rb lib/sass/script/parser.rb lib/sass/script/literal.rb lib/sass/script/node.rb lib/sass/script/number.rb lib/sass/script/functions.rb Functions Script Files lib/sass/tree/while_node.rb lib/sass/tree/if_node.rb lib/sass/tree/mixin_def_node.rb lib/sass/tree/debug_node.rb lib/sass/tree/for_node.rb lib/sass/tree/import_node.rb lib/sass/tree/prop_node.rb lib/sass/tree/node.rb lib/sass/tree/comment_node.rb lib/sass/tree/mixin_node.rb lib/sass/tree/directive_node.rb lib/sass/tree/rule_node.rb lib/sass/tree/variable_node.rb Tree lib/sass/plugin/rack.rb Plugin Sass dot/m_54_0.png

The module that contains everything Sass-related:

Also see the {file:SASS_REFERENCE.md full Sass reference}.

Classes and Modules

Module Sass::Files
Module Sass::Plugin
Module Sass::Script
Module Sass::Tree
Class Sass::CSS
Class Sass::Engine
Class Sass::Environment
Class Sass::Repl
Class Sass::SyntaxError
Class Sass::UnitConversionError

Constants

VERSION = version[:string] unless defined?(Sass::VERSION)   A string representing the version of Sass. A more fine-grained representation is available from {Sass.version}.
Mixin = Struct.new(:name, :args, :environment, :tree)   A Sass mixin.

`name`: `String` : The name of the mixin.

`args`: `Array<(String, Script::Node)>` : The arguments for the mixin.

  Each element is a tuple containing the name of the argument
  and the parse tree for the default value of the argument.

`environment`: {Sass::Environment} : The environment in which the mixin was defined.

  This is captured so that the mixin can have access
  to local variables defined in its scope.

`tree`: {Sass::Tree::Node} : The parse tree for the mixin.

[Validate]