[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

.irbrc Goodies

Aleks Kissinger

8/2/2006 5:08:00 PM

I was wondering, what are some of your favourite .irbrc tricks? For
example, the one I end up using the most is the mlike mixin, which I
found in the comments on a Redhanded article:
http://redhanded.hobix.com/inspect/stickItInYourIrbrcMethodf...

class Object
def mlike(regex)
methods.grep(regex)
end
end


irb(main):004:0> 'stuff'.mlike /len/
=> ["length"]