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
I noticed a strange behavior when I use awesome print with Struct and one of the attribute is ":s"+other_attribute.
Here an example:
require "awesome_print" require "ostruct" A = Struct.new(:a, :sa) ap A.new(1,2) ===> #<Struct:A:0x5561e5934cd8 a = 1, attr_accessor :a = 2 >
Instead of the expected:
#<Struct:A:0x5561e5934cd8 a = 1, sa = 2 >
The text was updated successfully, but these errors were encountered:
This appears to be caused by an indexing error into the variables. I have opened a PR to fix this. #363
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I noticed a strange behavior when I use awesome print with Struct and one of the attribute is ":s"+other_attribute.
Here an example:
Instead of the expected:
The text was updated successfully, but these errors were encountered: