Class: Person

Inherits:
ActiveRecord::Base
  • Object
show all
Includes:
ActiveRecord::Mlang
Defined in:
app/models/person.rb

Instance Method Summary collapse

Instance Method Details

#nameObject



6
7
8
9
10
11
12
# File 'app/models/person.rb', line 6

def name
  if nm = names.first
    nm.name
  else
    nil
  end
end