With the Ruby 1.9.2 release on the horizon, it's time to get developers excited about Ruby 1.9. What are some nice things you can do in Ruby 1.9 that you can't do in Ruby 1.8?
|
|
I can't believe that this hasn't been mentioned yet: the single biggest feature of Ruby 1.9.2+ is that for the first time in 17 years, Ruby will have a specification. You might have heard that all release schedule for Ruby 1.9.2 (which was supposed to be released in the Spring of 2010) has been canceled, and this is the reason: first, a complete specification of Ruby 1.9.2 will be developed in the RubySpec project, then Ruby 1.9.2 (the programming language) will be released, and only then will YARV 1.9.2 be released, after it passes the RubySpec testsuite. This is exactly backwards from how it worked before: first MRI was released, then all the other implementors read the (not very well designed, and generally badly documented) C source code of MRI, to try and figure out what the heck that new feature was supposed to do, then they tried to write executable specifications, and only then did they even have a remote chance of actual compatibility. But by that time, generally, a new version of YARV had already been released, and the cycle began anew ... Not to mention that the maintainers of MRI and YARV didn't even run the RubySpecs. This has huge ramifications. For example, despite the fact that currently more than a dozen different Ruby implementations are in active development, and over the years of its existence there have been more than 30 different implementations of the Ruby programming language, this fact has not been acknowledged by the maintainers of the Ruby programming language. For them, Ruby and MRI (or more recently Ruby and YARV) have always been one and the same thing: MRI was both the language and the execution engine, Ruby was both the execution engine and the language. The "specification" of the Ruby programming language was the C source code of MRI. As of five weeks ago, this has changed: now, the official specification of the Ruby programming language (at least version 1.9.2 and later) is the executable testsuite of the RubySpec project. And YARV is just another Ruby implementation, completely equal to MacRuby, IronRuby, JRuby, Cardinal, tinyrb, SmallRuby, BlueRuby, MagLev and the others. This means that so called "alternate" implementations (which as of now should no longer be called "alternate" because YARV has lost its special status) now have a chance to actually catch up with the latest language features implemented in YARV. In fact, since most of the other implementations are actually both much better designed and implemented in much better languages than YARV (which is basically a huge spaghetti mess of C), plus having more manpower, it is entirely plausible that other implementations will actually be Ruby 1.9.2 compliant before YARV. |
||||
|
I personally love the new hash syntax: |
|||||||
|
|
Enumerators.
This has been backported to 1.8.7 as well. |
||||
|
|
Ruby 1.9 has different block behaviors:
Threads are also different:
Other minor change is the inclusion of RubyGems in the load path, no need to |
|||||||||||
|
|
I like Enumerators a lot -- not just for existing types, but writing my own collections as Enumerator classes. Since switching to 1.9, I've twice had to build API adapters to external Web services that pull down large JSON or XML result sets. Sometimes I'd be capped on how many records I could retrieve at once, meaning I'd need to do multiple requests. (Get the first 500, then get records 501 to 1000, etc.) The "old" way I'd have processed these would have been to grab the first batch, iterate over it all at once with With Enumerators, I can grab the first batch, hold the source data as my "authoritative" collection, and process and yield each Ruby object as I step into it. When I pass the last element, if I know there's more data to be pulled from the source, I can make the next API call then. (I.e., lazy loading.) This means a much faster return on the retrieval method call, and much better memory usage. Each Ruby object is eligible for garbage collection as soon as I'm done with it and have moved to the next one. An abstract implementation of the idea looks like this:
Once you have that, you can walk over them like:
What do you lose? Mostly the ability to easily jump to a particular element by reference. (Which means you also lose "last," sorts, etc.) Just getting Yes, you can do this with Ruby 1.8.7 thanks to backporting. But 1.9 is much faster at it thanks to the internal use of fibers. And if it hadn't been for 1.9, there wouldn't have been a 1.8.7, so I've decided it still qualifies as my favorite 1.9 feature. |
||||
|
|
|
Ruby 1.9.2 supports gettting information about method parameters. You can get the name of the parameters, and information about them such as optional, required or block. View Method#params for an example. |
||||
|
|
|
Hashes are ordered in ruby 1.9. It's very useful when implementing some algorithms. You have to depend on a gem or write your own ordered hash in ruby 1.8. |
||||
|
|
Full native support for multibyte character encodings, particularly Unicode. |
||||
|
|
instance_exec, and class_exec are great new features, but to me it's mainly the small changes (that have already been backported to 1.8.7). Things like Method#owner is great - ever wondered where exactly in the inheritance chain a particular method was defined? my_object.method(:blah).owner will tell you :) Other things i like about 1.9 are the more consistent scoping rules esp. in eval contexts. It was a silly omission (IMO) that constants and class variables were not looked up in an instance_eval, 1.9 fixes this :) |
||||
|
|
I like Some libraries (e.g. ActiveSupport) provide the same functionality under 1.8, but it's still nice to have it be part of the core language, and the 1.9 implementation is a lot better optimized than the library approach. |
|||||||||
|
|
Oh, and: it's more than twice as fast. Faster still if you're building a multithreaded application with lots of I/O delays. With all the work that still goes into trying to pump a bit more performance out of 1.8, or fix its threading, etc., it amazes me that people aren't getting more excited about 1.9's speed or its native threads. |
|||||||||||||
|
|
YARV. The new Ruby VM in 1.9 offers a new modern VM that is significantly faster. |
||||
|
|
|
Improved regular expression support. Ruby 1.9 supports named regex groups -- among many other improvements -- that you can recall later in your regex. Dave Thomas gives a great example. |
||||
|
|
|
Ruby 1.9 Fibers offers a powerful new concurrency construct. Ruby Fibers: 8 Useful Reads On Ruby’s New Concurrency Feature has links to fibers related articles. |
||||
|
|
Better Unicode support and better threading.
Additionally being able to do Performance improvementsSome benchmarks have shown significant improvements over 1.8.6, with 1.9.1 - due to the new VM (YARV) in Matz's Ruby Lots of neat little features...
If you have a copy of Dave Thomas' "Programming Ruby" (AKA The Pick-axe book), the section on built-in classes and methods does a decent job of tagging the changes from 1.8 to 1.9
How about: (a) the new hash syntax: {:hello => "world"} can be shortened to {:hello:"world"} (b) ordered hashes !! |
||||
|
|
|
In Ruby 1.9.+, it is also possible to chain methods over multiple lines. Doesn't seem such a crazy feature but it is allowing to keep your code more readable, and that is a key concept of Ruby. For example :
|
||||
|
|