I defined a method on my model: ```ruby server_method :past_due? do ... end ``` Nothing is broken on the client, but I get this message: ```javascript Warning: Deprecated feature used in Job. Server side method past_due?=(true) must be defined using the 'server_method' macro. ``` It seems it's trying to call `past_due?=` in addition to `past_due?`. Here's where it's happening (in Opal) ```javascript if (method['$==']("id")) { } else { target.$send("" + (method) + "=", value.$first()) } ```
I defined a method on my model:
Nothing is broken on the client, but I get this message:
It seems it's trying to call
past_due?=in addition topast_due?.Here's where it's happening (in Opal)