person.rb 172 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 require_dependency 'person' class Person def has_headline? !headline.nil? end def headline return nil unless blog blog.posts.published.first end end