jgoodsen (owner)

Fork Of

Revisions

gist: 77007 Download_button fork
public
Public Clone URL: git://gist.github.com/77007.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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>