-
Notifications
You must be signed in to change notification settings - Fork 455
New issue
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
undefined method marshal_dump
for ActiveModel::Errors
#413
Comments
wedsonlima
changed the title
output error: #<NoMethodError: undefined method marshal_dump' for #<ActiveModel::Errors:0x000055807859a148>
undefined method Apr 16, 2021
marshal_dump
for ActiveModel::Errors
Thanks, I'll take a look! |
Ran into this today, too. |
Here is one that Rubocop is a little happier about:
|
Hi, someone working on this patch? |
Guys, I pushed a PR to fix it, someone know why no CI jobs is running for that? |
I ended up replacing awesome_print with a fork amazing_print which includes the fix |
vassalloandrea
added a commit
to vassalloandrea/dev_tools
that referenced
this issue
Aug 1, 2023
Amazing Print is a fork of Awesome Print that has already resolved the undefined method marshal_dump for ActiveModel::Errors issue [1]. --- [1]: awesome-print/awesome_print#413
vassalloandrea
added a commit
to vassalloandrea/dev_tools
that referenced
this issue
Aug 1, 2023
Amazing Print is a fork of Awesome Print that has already resolved the undefined method marshal_dump for ActiveModel::Errors issue [1]. --- [1]: awesome-print/awesome_print#413
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
marshal_dump
method was removed fromActiveModel::Errors
in this commit and it's breaking pry console with awesome_print:output error: #<NoMethodError: undefined method marshal_dump' for #<ActiveModel::Errors:0x000055807859a148>
workaround:
awesome_print/lib/awesome_print/ext/active_record.rb
Line 84 in 9ae56ba
The text was updated successfully, but these errors were encountered: