General

Profile

bjhaid (Ayodele Abejide)

Issues

open closed Total
Assigned issues 0 0 0
Reported issues 0 2 2

Activity

12/28/2014

09:36 PM Ruby Bug #10668 (Closed): Fix description for Zlib.crc32
Method signatures has adler, but the description has crc, I have updated the method signature to depict what is in the description. bjhaid (Ayodele Abejide)

09/21/2013

05:42 AM Ruby Bug #8870: Method-Missing breaking irb
I do understand that its bad to use method_missing in the global space, but the behavior should be same irrespective of scope
This works:
2.0.0-p247 :002 > m "2","a","b"
=> ["2", "a", "b"]
2.0.0-p247 :003 > (m "2","a","b").class
=> Ar...
bjhaid (Ayodele Abejide)

09/06/2013

10:05 PM Ruby Bug #8870 (Closed): Method-Missing breaking irb
2.0.0p247 :001 > def method_missing m,*args; [m.to_s,args].flatten.join " "; end
=> nil
2.0.0p247 :002 > "j".happy "hh"

2.0.0p247 :001 > def method_missing *args; args.join " "; end
=> nil
2.0.0p247 :002 > "j".happy
SystemStac...
bjhaid (Ayodele Abejide)

Also available in: Atom