What is the difference between Ruby 1.8 and Ruby 1.9 - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T20:02:09Zhttp://stackoverflow.com/feeds/question/21574http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/21574/what-is-the-difference-between-ruby-1-8-and-ruby-1-97What is the difference between Ruby 1.8 and Ruby 1.9salt.racer2008-08-22T01:32:54Z2009-09-15T09:31:30Z
<p>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?</p>
http://stackoverflow.com/questions/21574/what-is-the-difference-between-ruby-1-8-and-ruby-1-9/21621#216219Answer by Tim Sullivan for What is the difference between Ruby 1.8 and Ruby 1.9Tim Sullivan2008-08-22T01:53:44Z2008-08-22T01:53:44Z<p>Sam Ruby has a <a href="http://slideshow.rubyforge.org/ruby19.html" rel="nofollow">cool slideshow that outline the differences</a>.</p>
<p>HTH!</p>
http://stackoverflow.com/questions/21574/what-is-the-difference-between-ruby-1-8-and-ruby-1-9/21693#216932Answer by Sören Kuklau for What is the difference between Ruby 1.8 and Ruby 1.9Sören Kuklau2008-08-22T03:11:30Z2008-08-22T03:11:30Z<p>One huge difference would be the move from Matz's interpreter to <a href="http://en.wikipedia.org/wiki/YARV" rel="nofollow">YARV</a>, a bytecode virtual machine that helps significantly with performance.</p>
http://stackoverflow.com/questions/21574/what-is-the-difference-between-ruby-1-8-and-ruby-1-9/1426144#14261442Answer by Dave Everitt for What is the difference between Ruby 1.8 and Ruby 1.9Dave Everitt2009-09-15T09:31:30Z2009-09-15T09:31:30Z<p>Many now recommend <a href="http://rads.stackoverflow.com/amzn/click/0596516177" rel="nofollow">The Ruby Programming Language</a> over the Pickaxe - more to the point, it has all the details of the 1.8/1.9 differences.</p>