1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
class Object
def s
class << self; self; end
end
def singleton_method_added name
puts "singleton method added: #{self}##{name}"
end
end
class Module
def method_added name
puts "method added: #{self}##{name}"
end
end
def dump obj, methodName
puts "=== #{obj}##{methodName} ==="
if obj.is_a? Module
puts obj.public_instance_methods.include?(methodName) ? "public" : "-"
puts obj.private_instance_methods.include?(methodName) ? "private" : "-"
end
puts obj.s.public_instance_methods.include?(methodName) ? "public" : "-"
puts obj.s.private_instance_methods.include?(methodName) ? "private" : "-"
end
$bob = Object.new
class Foo
class << $bob
private
end
private
def $bob.xxx
end
end
module M
def yyy
end
end
dump $bob, "xxx"
dump M, "yyy"
module M
module_function :yyy
end
dump M, "yyy"
module N
module_function
def zzz
end
end
dump N, "zzz"
module P
module_function
def initialize
end
end
dump P, "initialize"
class Q
public
def initialize
end
end
dump Q, "initialize"
class S
def self.initialize
end
end
dump S, "initialize"
|