PageRenderTime 11ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/scalate-jruby/src/main/resources/haml-3.0.25/lib/sass/scss.rb

http://github.com/scalate/scalate
Ruby | 17 lines | 10 code | 1 blank | 6 comment | 0 complexity | 07bb62a3b5881d134e15ad0b24afc105 MD5 | raw file
  1. require 'sass/scss/rx'
  2. require 'sass/scss/script_lexer'
  3. require 'sass/scss/script_parser'
  4. require 'sass/scss/parser'
  5. require 'sass/scss/sass_parser'
  6. require 'sass/scss/static_parser'
  7. require 'sass/scss/css_parser'
  8. module Sass
  9. # SCSS is the CSS syntax for Sass.
  10. # It parses into the same syntax tree as Sass,
  11. # and generates the same sort of output CSS.
  12. #
  13. # This module contains code for the parsing of SCSS.
  14. # The evaluation is handled by the broader {Sass} module.
  15. module SCSS; end
  16. end