Skip to content

Instantly share code, notes, and snippets.

@denysonique
Created April 5, 2012 02:01
Show Gist options
  • Save denysonique/2307405 to your computer and use it in GitHub Desktop.
Save denysonique/2307405 to your computer and use it in GitHub Desktop.
def full_name
unless @_full_name
return @first_name + ' ' + @last_name
end
@_full_name
end
def full_name=(full_name)
@_full_name = full_name
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment