From 184bdbed5272a8688c81cf9e7fd2c4f45615bace Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Fri, 30 Nov 2018 00:27:08 +0900 Subject: [PATCH] Add explit require to resolve possible autoload error. close #1001 --- lib/haml/attribute_parser.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/haml/attribute_parser.rb b/lib/haml/attribute_parser.rb index b57f7543..d473767f 100644 --- a/lib/haml/attribute_parser.rb +++ b/lib/haml/attribute_parser.rb @@ -3,6 +3,7 @@ begin require 'ripper' rescue LoadError end +require 'temple/static_analyzer' module Haml # Haml::AttriubuteParser parses Hash literal to { String (key name) => String (value literal) }.