Ruby 2.3 Released
Written by Kay Ewbank   
Friday, 01 January 2016

Ruby 2.3 has been released for the New Year packed with new features. 

This is the first stable release of Ruby 2.3 series, and among the new features, the frozen string literal pragma is perhaps the most obvious.

 

rubylogo

Versions of Ruby up to 2.2 had mutable strings by default, If you wanted to make a string immutable, you had to call #freeze on it. 

Immutable or frozen strings improve the overall performance because Ruby had to allocate fewer objects. In recognition of this, there are plans to make strings immutable by default in Ruby 3.0. 

The new release provides an interim solution by having the option for all string literals to be frozen by default. All you have to do is to add a command line option or the magic comment:

#frozen_string_literal: true

at the start of the file. This will ensure that all the string literals in the file are frozen without having to call #freeze on them. If you're unfamiliar with magic comments, they're preprocessing directives that the source code interpreter read to set the appropriate encoding before processing your source code.

Another addition to the new language version is a safe navigation operator, also known as a lonely operator. The &. operator already exists in C#, Groovy, and Swift, and in Ruby will make it easier to handle nils. One use is when you need to check if an object is nil before calling a method on it. It will return nil if the object equals nil, otherwise it calls the method on the object. Array#dig and Hash#dig have also been added, providing a simpler API for accessing nested elements in arrays and hashes.

One useful improvement is the bundling of did_you_mean gem. If you get a "NoMethodError" because you've typed the method name incorrectly, Ruby will now suggest other method names similar to whatever you've mistyped.

The new version also has a number of performance improvements, including machine code level tuning for object allocation and method calling code, a smarter instance variable data structure,a reconsider method entry data structure, and an introducing new table data structure. The full list can be seen in the release notes. 

 

 rubylogo

 

More Information

Ruby Language

Download Ruby

Related Articles

Ruby And Rails Updated

Ruby 2.1 With Better Garbage Collection

To be informed about new articles on I Programmer, sign up for our weekly newsletter,subscribe to the RSS feed and follow us on, Twitter, FacebookGoogle+ or Linkedin

Banner


Open Platform For Enterprise AI Launched
18/04/2024

A new platform aimed at building and supporting an open artificial intelligence (AI) and data community has been launched.  The Open Platform for Enterprise AI (OPEA) was announced by The Linux F [ ... ]



Azure AI And Pgvector Run Generative AI Directly On Postgres
26/03/2024

It's a match made in heaven. The Azure AI extension enables the database to call into various Azure AI services like Azure OpenAI. Combined with pgvector you can go far beyond full text search. Let's  [ ... ]


More News

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Thursday, 31 December 2015 )