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
After bumping from 4.0.1 to 4.0.2 usage of converter: :new option in a array attribute broke resolving to correct class.
converter: :new
Example:
array :summaries do object converter: :new end
This does not longer resolve to use Summary class after updating, now we have to specify the class for it to work as expected:
Summary
array :documentaries do object class: Summary, converter: :new end
The text was updated successfully, but these errors were encountered:
ec2e8d3
No branches or pull requests
After bumping from 4.0.1 to 4.0.2 usage of
converter: :new
option in a array attribute broke resolving to correct class.Example:
This does not longer resolve to use
Summary
class after updating, now we have to specify the class for it to work as expected:The text was updated successfully, but these errors were encountered: