Skip to content

Instantly share code, notes, and snippets.

@burke
Forked from eqdw/gist:1038025
Created June 21, 2011 14:58
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 burke/1038026 to your computer and use it in GitHub Desktop.
Save burke/1038026 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, *super_params)
#do some more stuff
super(*super_params)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment