Skip to content

Instantly share code, notes, and snippets.

@eqdw
Created June 21, 2011 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save eqdw/1038025 to your computer and use it in GitHub Desktop.
Save eqdw/1038025 to your computer and use it in GitHub Desktop.
############# 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