Skip to content

Instantly share code, notes, and snippets.

@marocchino
Created December 31, 2014 12:40
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 marocchino/82b0f5170e33252c289c to your computer and use it in GitHub Desktop.
Save marocchino/82b0f5170e33252c289c to your computer and use it in GitHub Desktop.
class User
attr_accessor :age
def initialize
@age = 0
end
def birthday
puts 'happy birthday!'
birthday_act
@age += 1
end
private
def birthday_act
end
end
class Boy < User
private
def birthday_act
puts 'some process...'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment