提交 adc7097d 编写于 作者: S Santiago Pastorino

Merge pull request #2124 from arunagw/render_partial_invalid_check_fix

Checking with to_s. As regexp fail with 1.8.7
......@@ -300,8 +300,7 @@ def setup(context, options, block)
else
paths.map! { |path| retrieve_variable(path).unshift(path) }
end
if String === partial && @variable !~ /^[a-z_][a-zA-Z_0-9]*$/
if String === partial && @variable.to_s !~ /^[a-z_][a-zA-Z_0-9]*$/
raise ArgumentError.new("The partial name (#{partial}) is not a valid Ruby identifier; " +
"make sure your partial name starts with a letter or underscore, " +
"and is followed by any combinations of letters, numbers, or underscores.")
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册