-
Notifications
You must be signed in to change notification settings - Fork 30
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
Handle class_methods do
blocks for concerns
#525
Comments
class_methods
do blocks for concernsclass_methods do
blocks for concerns
@toddkummer this shipped in v0.3.27, if you want to check it's working wth your gem. |
The current version of the gem has an extra level of indirection: the main controller mixin includes two modules that each have the For example, the gem might be implemented by mixing the module into the ApplicationController:
Which then uses one more level of includes...
To finally get to the
The extra level of indirection seems to prevent the hover and Go To Definition from working. When I collapse it so that the first include has the I was leaning towards making that change anyways, so this fix does resolve my issue. I just wanted to share the additional finding with you in case it is valuable. I think this confirms I am testing all this on the latest version:
|
(details to be added)
cc @toddkummer
The text was updated successfully, but these errors were encountered: