2009-01-25 14:02:33 -05:00
|
|
|
require 'haml/version'
|
|
|
|
|
2009-06-18 16:40:57 -04:00
|
|
|
# The module that contains everything Haml-related:
|
2008-04-08 02:09:17 -04:00
|
|
|
#
|
2012-08-19 12:13:39 -04:00
|
|
|
# * {Haml::Parser} is Haml's parser.
|
|
|
|
# * {Haml::Compiler} is Haml's compiler.
|
|
|
|
# * {Haml::Engine} is the class used to render Haml within Ruby code.
|
|
|
|
# * {Haml::Options} is where Haml's runtime options are defined.
|
2009-06-18 16:40:57 -04:00
|
|
|
# * {Haml::Error} is raised when Haml encounters an error.
|
2008-04-24 15:35:42 -04:00
|
|
|
#
|
2012-04-29 11:27:01 -04:00
|
|
|
# Also see the {file:REFERENCE.md full Haml reference}.
|
2007-12-11 05:03:44 -05:00
|
|
|
module Haml
|
2012-05-28 21:53:26 -04:00
|
|
|
|
|
|
|
def self.init_rails(*args)
|
|
|
|
# Maintain this as a no-op for any libraries that may be depending on the
|
|
|
|
# previous definition here.
|
|
|
|
end
|
|
|
|
|
2007-12-11 05:03:44 -05:00
|
|
|
end
|
2006-12-18 21:56:49 -05:00
|
|
|
|
2008-11-22 22:17:06 -05:00
|
|
|
require 'haml/util'
|
2010-08-22 19:04:02 -04:00
|
|
|
require 'haml/engine'
|
2013-06-27 17:58:35 -04:00
|
|
|
require 'haml/railtie' if defined?(Rails::Railtie)
|