How do you run a "do" block in a Rails Model while still listing a :dependent? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T17:32:32Z http://stackoverflow.com/feeds/question/282178 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/282178/how-do-you-run-a-do-block-in-a-rails-model-while-still-listing-a-dependent 2 How do you run a "do" block in a Rails Model while still listing a :dependent? Evan Lecklider 2008-11-11T21:20:43Z 2008-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 =&gt; 'created_at desc', :limit =&gt; 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#282187 3 Answer by mwilliams for How do you run a "do" block in a Rails Model while still listing a :dependent? mwilliams 2008-11-11T21:28:55Z 2008-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 -1 Answer by Cameron Booth for How do you run a "do" block in a Rails Model while still listing a :dependent? Cameron Booth 2008-11-12T04:17:11Z 2008-11-12T04:17:11Z <p>This should work just fine AFAIK:</p> <pre><code>has_many :posts, :dependent =&gt; :destroy do def recent find(:all, :order =&gt; 'created_at desc', :limit =&gt; 12) end end </code></pre>