How do you run a "do" block in a Rails Model while still listing a :dependent? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T17:32:32Zhttp://stackoverflow.com/feeds/question/282178http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/282178/how-do-you-run-a-do-block-in-a-rails-model-while-still-listing-a-dependent2How do you run a "do" block in a Rails Model while still listing a :dependent?Evan Lecklider2008-11-11T21:20:43Z2008-11-12T04:17:11Z
<p>So I have a User model that :has_many other models like Documents, Videos, Posts and the like. My question arises when I execute a "do" block from the User model like so:</p>
<pre><code>has_many :posts do
def recent
find(:all, :order => 'created_at desc', :limit => 12)
end
end
</code></pre>
<p>This just lets me call something like user.posts.recent to find only those posts associated with the User. With this in place, how can I still add a :dependent => :destroy or :dependent => :delete_all to this association? Everything I have tried so far has errored out on me.</p>
http://stackoverflow.com/questions/282178/how-do-you-run-a-do-block-in-a-rails-model-while-still-listing-a-dependent/282187#2821873Answer by mwilliams for How do you run a "do" block in a Rails Model while still listing a :dependent?mwilliams2008-11-11T21:28:55Z2008-11-11T21:28:55Z<p>It looks like you should take a look at using <a href="http://railscasts.com/episodes/108" rel="nofollow">named_scope</a>.</p>
<p>There's no reason why you should have a do block against your association.</p>
<p>You you should turn that recent method into a named scope and you can then tack on :dependent => destroy etc etc.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/282178/how-do-you-run-a-do-block-in-a-rails-model-while-still-listing-a-dependent/283020#283020-1Answer by Cameron Booth for How do you run a "do" block in a Rails Model while still listing a :dependent?Cameron Booth2008-11-12T04:17:11Z2008-11-12T04:17:11Z<p>This should work just fine AFAIK:</p>
<pre><code>has_many :posts, :dependent => :destroy do
def recent
find(:all, :order => 'created_at desc', :limit => 12)
end
end
</code></pre>