In Rails 5.x I could define options
like so:
options = {class: "...", "data-unix-timestamp": "...", "data-toggle":"..."}
tag.div('', options)
Upgrading to Rails 7.0.8.7, this fails:
Failure/Error: tag.div('', options)
ArgumentError:
wrong number of arguments (given 3, expected 1..2)
In Rails 5.x I could define options
like so:
options = {class: "...", "data-unix-timestamp": "...", "data-toggle":"..."}
tag.div('', options)
Upgrading to Rails 7.0.8.7, this fails:
Failure/Error: tag.div('', options)
ArgumentError:
wrong number of arguments (given 3, expected 1..2)
Share
Improve this question
asked 11 hours ago
Eric WanchicEric Wanchic
2,0841 gold badge24 silver badges26 bronze badges
1
|
1 Answer
Reset to default 0Fix: options
need to be explicitly specified.
options = {class: "...", "data-unix-timestamp": "...", "data-toggle":"..."}
"<div #{tag.attributes(options)} ></div>".html_safe
tag
helper accepts 4 arguments so the stacktrace is likely missing some details. Willing to bet you are using rails 7 with an older ruby version and there is some form of argument expansion going on that is not supported by your version of ruby. – engineersmnky Commented 10 hours ago