Skip to content

Instantly share code, notes, and snippets.

@chad
Created March 10, 2009 15:52
  • Star 12 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save chad/76951 to your computer and use it in GitHub Desktop.
# How to find out where a method comes from.
# Learned this from Dave Thomas while teaching Advanced Ruby Studio
# Makes the case for separating method definitions into
# modules, especially when enhancing built-in classes.
module Perpetrator
def crime
end
end
class Fixnum
include Perpetrator
end
p 2.method(:crime)
#<Method: Fixnum(Perpetrator)#crime>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment