Ruby on Rails Tuesday, September 24, 2013

Thank you Matt!!
Now I see my own confusion - I was convinced that these two snippets are identical in Rails 3 (Well, they are - JUST in MY case)

When they do the same thing - when the collection contains only new records (hence no unlinking required).
In all other cases in-place filtering doesn't work even in Rails 3 as you pointed out.

But I still disagree that dropping the in-place methods (and breaking the Collection contract) is the best solution.

Thank you once again for clarifying!!

On Monday, September 23, 2013 4:59:52 PM UTC+3, Matt Jones wrote:


On Tuesday, 17 September 2013 00:43:15 UTC-5, George Georgiev wrote:
Hi everyone!

For those of you who are not noticed the in-place edit method for collection associations are broken in the current rails release - 4.0.0,

In short: it looks like things like has_many.reject!{}, has_many.select!{}, has_many.delete_if{}, has_many.pop etc. will not work as of Rails 4.2.
I tried to get some answers about the motivation of this decision here https://github.com/rails/rails/pull/12236 but i failed.

So to the question can someone please explain WHY is this happening?
Where is the "confusion" in the examples above?


The problem is that using (for instance) delete_if on a collection removes things from the in-memory version but doesn't persist the changes. It *can't* persist the changes, since the records have been removed from the association's list of records. This is EXACTLY the "confusion" referenced in the tickets.

One of your examples in 12236 highlights this issue: these two code snippets (in Rails 3 or 4) do not do the same thing:

post.comments.select! { |comment| comment.not_spam? } 
# => filters the array in-memory but does not unlink objects

vs

comments = post.comments.to_a
comments.select! { |comment| comment.not_spam? }
post.comments = comments 
# => unlinks comments that aren't in the filtered array

--Matt Jones

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/3b603811-8d04-4d3e-a76e-707400ce2d97%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

No comments:

Post a Comment