Skip to content

Instantly share code, notes, and snippets.

@jherdman
Created February 25, 2010 18:45
Show Gist options
  • Save jherdman/314885 to your computer and use it in GitHub Desktop.
Save jherdman/314885 to your computer and use it in GitHub Desktop.
class Dog
attr_writer :year_of_birth
def age
def self.age; @age; end
@age = Time.now.year - year_of_birth
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment