class Tact::Contact

Public Instance Methods

full_name() click to toggle source
# File lib/tact/contact.rb, line 12
def full_name
  first_name + " " + last_name
end
to_s() click to toggle source
# File lib/tact/contact.rb, line 16
def to_s
  "#{full_name}\n".green.bold
end