From e6948335ec799a82f95e665097d4be986ced5350 Mon Sep 17 00:00:00 2001 From: nex3 Date: Tue, 11 Dec 2007 19:14:33 +0000 Subject: [PATCH] =?UTF-8?q?Fixing=20a=20stupid=20bug=20my=20init.rb=20refa?= =?UTF-8?q?ctoring=20introduced.=20Oops.=20Thanks=20to=20Florian=20A=C3=9F?= =?UTF-8?q?mann=20for=20pointing=20this=20out.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://hamptoncatlin.com/haml/trunk@694 7063305b-7217-0410-af8c-cdc13e5119b9 --- lib/haml.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/haml.rb b/lib/haml.rb index a356f076..7a530ce8 100644 --- a/lib/haml.rb +++ b/lib/haml.rb @@ -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