person_info.rb 265 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 class PersonInfo < ActiveRecord::Base # FIXME: add file_column :photo belongs_to :person def summary [ [ _('Name'), self.name ], [ _('Address'), self.address ], [ _('Contact Information'), self.contact_information ], ] end end