Notes:
Patches the ruby source (v1.8.2, may work for other versions) such that it allows to grab methods from an object using a compact syntax:
\class # => #<Method: Object(Kernel)#class>
1\+ # => #<Method: Fixnum#+>
"hello"\` # => #<Method: String(Kernel)#`>
"hi"\class.class # => Method
"hi"\class\type\class # => #<Method: Method(Kernel)#class>
Changes:
Initial release.
|