I'm not clear on the differences between the "current" version of Ruby (1.8) and the "new" version (1.9). Is there an "easy" or a "simple" explanation of the differences and why it is so different?

link|improve this question

74% accept rate
5  
There is very detailed coverage here: eigenclass.org/hiki.rb?Changes+in+Ruby+1.9 – Telemachus Nov 24 '09 at 12:36
1  
I assume you mean Ruby 1.8.6 - Ruby 1.8.7 has a lot of library constructs from 1.9. – Andrew Grimm May 3 '10 at 7:44
Any more I consider the 1.8 versions the "old" versions, and 1.9.2+ the "current" ones. I only use 1.8.7 for compatibility checks but develop in 1.9.2. – the Tin Man Nov 9 '10 at 16:25
3  
@Telemachus: The link's broken. – Andrew Grimm Sep 7 '11 at 2:46
feedback

3 Answers

up vote 45 down vote accepted

Sam Ruby has a cool slideshow that outline the differences.

HTH!

link|improve this answer
feedback

One huge difference would be the move from Matz's interpreter to YARV, a bytecode virtual machine that helps significantly with performance.

link|improve this answer
feedback

Many now recommend The Ruby Programming Language over the Pickaxe - more to the point, it has all the details of the 1.8/1.9 differences.

link|improve this answer
1  
I like them both. The Pickaxe book discusses some things more fully but The Ruby Programming Language is good when you want to quickly scan for something. It's closer to a "nutshell" book. – the Tin Man Nov 9 '10 at 16:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.