Skip to content

Instantly share code, notes, and snippets.

@Gazer
Created October 27, 2008 18:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gazer/20151 to your computer and use it in GitHub Desktop.
Save Gazer/20151 to your computer and use it in GitHub Desktop.
class User
def full_name
"BLA"
end
alias :full_name, :real_full_name
def full_name
@cache ||= real_full_name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment