Keith Schacht’s Weblog

Subscribe

Methods on associations. I never knew you could include methods inside ActiveRecord associations:

``` class Book has_many :reviews do def featured = where(featured: true).first end end

book.reviews.featured ```