Skip to content

Instantly share code, notes, and snippets.

@kyriacos
Forked from chad/gist:76951
Created November 27, 2011 17:40
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 kyriacos/1397872 to your computer and use it in GitHub Desktop.
Save kyriacos/1397872 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