Created
June 21, 2011 14:57
-
-
Save eqdw/1038025 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############# THIS IS WITHIN THE LIBRARY ############# | |
class Foo | |
def initialize(a, b, c, opts={}) | |
#do some stuff | |
end | |
end | |
###################################################### | |
######### THIS IS WHAT I WANT TO DO ################## | |
class Bar < Foo | |
def initialize(newparam, a, b, c, opts{}) | |
#do some more stuff | |
super(pass original params up) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment