-
Notifications
You must be signed in to change notification settings - Fork 82
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
Fix before_filter > before_action deprecation error (backward compatible) #67
base: master
Are you sure you want to change the base?
Conversation
Can anyone code-review and merge, please? |
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.
Is this gem no longer being maintained?
@@ -1,3 +1,8 @@ | |||
2.0.0 |
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.
I don't think there's any major incompatible API changes ... maybe better to stick to 1.9.0
?
I would love for this to get merged. @zachinglis |
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.
From code review only, this looks alright - just needs the correct version bump.
@@ -1,6 +1,6 @@ | |||
module Crummy | |||
MAJOR = 1 |
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.
I see the breaking change (removing ruby 1.9 support) - in that case, this should be:
MAJOR = 1 | |
MAJOR = 2 | |
MINOR = 0 | |
PATCH = 0 |
I made a fork https://github.com/rubynetti/crummy with support for rails 5.1 |
No description provided.