Skip to content

Instantly share code, notes, and snippets.

@ehrenmurdick
Created December 9, 2011 22:06
Show Gist options
  • Save ehrenmurdick/1453523 to your computer and use it in GitHub Desktop.
Save ehrenmurdick/1453523 to your computer and use it in GitHub Desktop.
class SuperClass
def some_method
puts "foo"
end
end
class BabyClass << SuperClass
def some_method
super
puts "bar"
end
end
BabyClass.new.some_method
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment