# app/models/foobar.rb class Foobar < ActiveRecord::Base has_many :documents def pdf_documents documents.where('attachment_content_type LIKE ?', '%pdf%').map do |pdf_document| File.new(pdf_document.attachment.path) end end end