May 27, 2007 @ 10:28 pm

A while back, I wrote an introduction on code blocks. So if you’re not sure what they are, you should read it first.
Something I find interesting with code blocks is that they create the illusion of being executed at the moment they are written. It’s easy to get fooled, because when you look at […]

Posted under : In depth
May 21, 2007 @ 05:30 am

Understanding the “chain”
In my last article, I explained where the various elements of an object were located. Now it’s time to understand what happens at run time when you write the following :

obj.my_instance_method

Ahh… A method call! Ruby knows what to do in this situation. Remember that inside “obj” resides a reference to MyClass? Well, ruby […]

Posted under : In depth
May 19, 2007 @ 09:56 am

A few days ago, Peter Cooper of rubyinside.com gave me an interview about Ruby Fleebie as well as the last project I worked on, Ecstatik!
All in all, it was a great day for me. I hope that those who discovered Ruby Fleebie after reading the interview will enjoy the articles and will stay with the […]

Posted under : Easy reading