Skip to content

Instantly share code, notes, and snippets.

@svenfuchs
Created June 2, 2009 14:54
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 svenfuchs/122274 to your computer and use it in GitHub Desktop.
Save svenfuchs/122274 to your computer and use it in GitHub Desktop.
# in a library
class MyClass
def initialize(*args)
# whatever
end
end
# in an extension
class << MyClass
def new(*args)
# do custom stuff
super
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment