Sha256: e8f4710cf26d75eee3c9bd94aca1363108c4b61152341810bc4e6c0d8883ecd1
Contents?: true
Size: 951 Bytes
Versions: 141
Compression:
Stored size: 951 Bytes
Contents
dir = File.dirname(__FILE__) $LOAD_PATH.unshift dir unless $LOAD_PATH.include?(dir) require 'haml/version' # The module that contains everything Sass-related: # # * {Sass::Engine} is the class used to render Sass/SCSS within Ruby code. # * {Sass::Plugin} is interfaces with web frameworks (Rails and Merb in particular). # * {Sass::SyntaxError} is raised when Sass encounters an error. # * {Sass::CSS} handles conversion of CSS to Sass. # # Also see the {file:SASS_REFERENCE.md full Sass reference}. module Sass extend Haml::Version # A string representing the version of Sass. # A more fine-grained representation is available from {Haml::Version#version Sass.version}. # @api public VERSION = version[:string] unless defined?(Sass::VERSION) end require 'haml/util' dir = Haml::Util.scope("vendor/fssm/lib") $LOAD_PATH.unshift dir unless $LOAD_PATH.include?(dir) require 'sass/engine' require 'sass/plugin' if defined?(Merb::Plugins)
Version data entries
141 entries across 141 versions & 4 rubygems