When dealing with any framework with which you are not 100% familiar, I've found it advisable to attempt to understand and clean up any extraneous warnings, if only so that you have a better chance of noticing real errors when they occur.
The one I've been getting lately has been:
DEPRECATION WARNING: @model will not longer be implicitly assigned to model
It appears not to be breaking anything in my current code base, but I'm worried just because I don't understand the warning completely. I thought it was generally better NOT to use @model in your partials.
Nonetheless this warning has been getting invoked every time this particular 'model' appears in its partial.
How should I explicitly assign it? I've created the @model in a controller, and am then calling the partial with a collection (understood this to be the 'railsy' method.)
Can anyone explain what's going on here to me, and what best practices are in this situation? I'm not freaking out yet, but the miles of warning tend to drown out the real output from my application.