-
Notifications
You must be signed in to change notification settings - Fork 168
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
feat: add support for Rails 7.1 #237
Conversation
ea1f51c
to
cf65943
Compare
is there an update on this one? would be nice to have |
The tests are failing on Rails 7.1, but updating to the latest RSpec version seems to make them pass. |
8e2cf9d
to
37429dc
Compare
Well, it makes 7.1 pass, but 6.1 and 7.0 are now failing 🤷🏻♂️ |
Any news about that? |
class << self | ||
def table_exists? | ||
connection.table_exists?(table_name) | ||
end | ||
alias :table_name :name |
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.
Why this change? I think this is causing problems
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.
It's a bit hard to follow some of the changes in this PR, because they're not accompanied by tests or comments explaining their neccessity. I opened my own PR, but I'm worried that you found stuff in your testing that I didn't run into
Let's continue with yours. But yes, needs some (manual) testing. |
closing due to #243 |
The changes from #233 are included here.