-
Notifications
You must be signed in to change notification settings - Fork 10
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
Application does not boot when also using active_record_extended #2
Comments
If ActiveRecord has already been loaded when PGEnum is required, you could experience an uninitialized constant error because the load hook was executing before the PGEnum module was parsed. Fixes #2
If ActiveRecord has already been loaded when PGEnum is required, you could experience an uninitialized constant error because the load hook was executing before the PGEnum module was parsed. Fixes #2
If ActiveRecord has already been loaded when PGEnum is required, you could experience an uninitialized constant error because the load hook was executing before the PGEnum module was parsed. Fixes #2
Hi there 👋 I'm pretty sure that Could you give the load-order-bug branch a try and let me know if that resolves your problem? |
Thank you, that seems to be working. I already tried moving the |
Awesome, new release incoming |
Great, thanks again! |
Hi 👋 !
I tried using
activerecord-pg_enum
on a project which already usesactive_record_extended
. Sinceactive_record_extended
has been in use without issues I am reporting the issue here.Reproduction script:
The text was updated successfully, but these errors were encountered: