1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/haml.rb

18 lines
569 B
Ruby
Raw Normal View History

require 'haml/version'
# The module that contains everything Haml-related:
2008-04-07 23:09:17 -07:00
#
# * {Haml::Engine} is the class used to render Haml within Ruby code.
# * {Haml::Helpers} contains Ruby helpers available within Haml templates.
# * {Haml::Template} interfaces with web frameworks (Rails in particular).
# * {Haml::Error} is raised when Haml encounters an error.
# * {Haml::HTML} handles conversion of HTML to Haml.
#
# Also see the {file:REFERENCE.md full Haml reference}.
module Haml
end
require 'haml/util'
2010-08-22 16:04:02 -07:00
require 'haml/engine'
require 'haml/railtie' if defined?(Rails)