We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have an item that is the first hyperlink to the actual media and need to iterate through the sub nodes of it:
item.sub_nodes.map(&:name).to_s
And then we get an error saying
SystemStackError: stack level too deep
since upgrading the rails app to ruby 3 (and rails 6.1)
We would expect to get a string back that contains the name of each item sub node.
We don't exactly have a solution, but suppose the answer would be somewhere in the definition of the each block here:
hyperclient/lib/hyperclient/link.rb
Line 28 in 0e445dc
The text was updated successfully, but these errors were encountered:
Start by adding Ruby 3 to https://github.com/codegram/hyperclient/blob/master/.travis.yml, do we have a repro of this out of the box with existing specs? If not, try building a repro?
Sorry, something went wrong.
We fixed this in one spot now with adding embedded: https://github.com/artsy/impulse/pull/805#discussion_r783322301
embedded
Looks like impulse is a private repo @kajatiger.
I fixed CI/CD with GHA on this repo and added Ruby 3.2 without issues. Interested in taking this on @kajatiger?
No branches or pull requests
🐞 Bug Report
Steps to reproduce
We have an item that is the first hyperlink to the actual media and need to iterate through the sub nodes of it:
And then we get an error saying
since upgrading the rails app to ruby 3 (and rails 6.1)
Expected behavior
We would expect to get a string back that contains the name of each item sub node.
Possible Solution
We don't exactly have a solution, but suppose the answer would be somewhere in the definition of the each block here:
hyperclient/lib/hyperclient/link.rb
Line 28 in 0e445dc
The text was updated successfully, but these errors were encountered: