class NameOfPerson::PersonName
def self.full(full_name)
def self.full(full_name) first, last = full_name.to_s.squish.split(/\s/, 2) new(first, last) if first.present? end
def self.full(full_name) first, last = full_name.to_s.squish.split(/\s/, 2) new(first, last) if first.present? end