We keep seeing warnings like the following when we run our specs:
Object#id will be deprecated; use Object#object_id
The code in question is accessing the id of an ActiveRecord model (which is an attribute on the table, obviously, rather than the object instance ID in the Ruby VM).
Does anyone know how to turn these particular warnings off or somehow avoid them?