-
-
Notifications
You must be signed in to change notification settings - Fork 909
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
Add minimal support for Rails 6 #1193
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! 🚀
* Add Rails 6 appraisal to start testing against it. * Fix usage of Module#parent as this is deprecated in Rails 6 in favor of Module#module_parent. * Ensure that we're using the correct version of `sqlite3` and `pg` at all times * When creating classes within tests, ensure that they are removed correctly * Fix detection of has_secure_password in models: Check that InstanceMethodsOnActivation is specifically defined, as Rails 6 no longer has such a module. Co-authored-by: Lee Machin <me@mrl.ee>
36a4f52
to
ae9bf4a
Compare
Hey there! |
Hey @palkan — yeah, I do plan on doing it soon. There's a couple of issues left over that I need to address, and I haven't had time lately to work on them, but I'll try to make time within the next couple of weeks. |
of Module#module_parent.
sqlite3
andpg
atall times
correctly
InstanceMethodsOnActivation is specifically defined, as Rails 6 no
longer has such a module.
Closes #1117.
Closes #1167.
Closes #1169.
Closes #1186.