Skip to content

Instantly share code, notes, and snippets.

@matschaffer
Created March 27, 2013 20:09
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 matschaffer/5257578 to your computer and use it in GitHub Desktop.
Save matschaffer/5257578 to your computer and use it in GitHub Desktop.
class Parent
def some_overriden_method(a,b,c)
a + b + c
end
end
class Child < Parent
def some_overriden_method(*)
puts super
end
end
Child.new.some_overriden_method(4,5,6)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment