Add a Haml::Util module to stable.

This commit is contained in:
Nathan Weizenbaum 2009-01-22 16:25:45 -08:00
parent fdabe841ed
commit d404d955e8
2 changed files with 6 additions and 0 deletions

View File

@ -1053,4 +1053,5 @@ module Haml
end
end
require 'haml/util'
require 'haml/engine'

5
lib/haml/util.rb Normal file
View File

@ -0,0 +1,5 @@
module Haml
module Util
class << self; include Haml::Util; end
end
end