Closed kamui closed 10 years ago
Rails 4.1 no longer allows you to return from an inline callback block, it's recommended you define the callback as a method.
return
https://github.com/rails/rails/issues/12981
This was causing me issues when trying to destroy an instance of a model with a protect block defined.
Could you please rename the method to protector_ensure_destroyable
protector_ensure_destroyable
Done. If you decide to merge this, would you consider releasing a new version with it?
0.7.3 released. Thank you :+1:
Rails 4.1 no longer allows you to
return
from an inline callback block, it's recommended you define the callback as a method.https://github.com/rails/rails/issues/12981
This was causing me issues when trying to destroy an instance of a model with a protect block defined.