Class: ActiveContent::Profile
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- ActiveContent::Profile
- Defined in:
- lib/active_content/models/profile.rb
Instance Method Summary collapse
-
#name ⇒ Object
Name composed by first and last name.
Instance Method Details
#name ⇒ Object
Name composed by first and last name
12 13 14 15 16 |
# File 'lib/active_content/models/profile.rb', line 12 def name if first_name or last_name "#{first_name} #{last_name}".strip end end |