Method not available on this version
This method is only available on newer versions.
The first available version (v7.2.3) is shown here.
normalize_args(string, options_hash)
private
Convert
render("foo", ...)
into either
render(template: "foo", ...)
or
render(partial: "foo", ...)
# File actionview/lib/action_view/render_parser/ripper_render_parser.rb, line 210
def normalize_args(string, options_hash)
if options_hash
{ partial: string, locals: options_hash }
else
{ partial: string }
end
end