Initialize @path.

This commit is contained in:
Emilio Tagua
2010-09-28 18:20:54 -03:00
parent e804104200
commit 357f59447d

View File

@@ -6,6 +6,7 @@ module ActionView
# = Action View Resolver
class Resolver
def initialize
@path = nil
@cached = Hash.new { |h1,k1| h1[k1] =
Hash.new { |h2,k2| h2[k2] = Hash.new { |h3, k3| h3[k3] = {} } } }
end