Skip to content

Instantly share code, notes, and snippets.

@texel
Created February 15, 2011 22:56
Show Gist options
  • Select an option

  • Save texel/828457 to your computer and use it in GitHub Desktop.

Select an option

Save texel/828457 to your computer and use it in GitHub Desktop.
class SuperClass
def foo
puts "I'm in super!"
end
alias :bar foo
end
class SubClass < SuperClass
def foo
puts "I'm in sub!"
end
end
sup = SuperClass.new
sup.foo
sup.bar
sub = SubClass.new
sub.foo
sub.bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment