Fixing a stupid bug my init.rb refactoring introduced. Oops. Thanks to Florian Aßmann for pointing this out.

git-svn-id: svn://hamptoncatlin.com/haml/trunk@694 7063305b-7217-0410-af8c-cdc13e5119b9
This commit is contained in:
nex3 2007-12-11 19:14:33 +00:00
parent df6d430023
commit e6948335ec
1 changed files with 1 additions and 1 deletions

View File

@ -720,7 +720,7 @@ module Haml
# so we can change the initialization behavior
# without modifying the file itself.
def self.init_rails(binding)
%w[haml/template sass sass/plugin].each(&:require)
%w[haml/template sass sass/plugin].each(&method(:require))
end
end