From 2c462bfcdc351276872c19ec98cc87dfe4e3f18e Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 16 May 2019 08:51:53 +0200 Subject: [PATCH] ruby: Update version from 2.3.4 to 2.5.5 [Release notes for 2.5.0][1]: > Ruby 2.5.0 is the first stable release of the Ruby 2.5 series. It > introduces many new features and performance improvements. The notable > changes are as follows: > > New Features > ============ > > * rescue/else/ensure are now allowed to be used directly with do/end blocks. [Feature #12906] > * Add yield_self to yield given block in its context. Unlike tap, it returns the result of the block. [Feature #6721] > * Support branch coverage and method coverage measurement. The branch coverage indicates which branches are executed and which are not. The method coverage indicates which methods are invoked and which are not. By running a test suite with these new features, you will know which branches and methods are executed, and evaluate total coverage of the test suite more strictly. [Feature #13901] > * Hash#slice [Feature #8499] and Hash#transform_keys [Feature #13583] > * Struct.new can create classes that accept keyword arguments. [Feature #11925] > * Enumerable#any?, all?, none?, and one? accept a pattern argument. [Feature #11286] > * Top-level constant look-up is no longer available. [Feature #11547] > * One of our most loved libraries, pp.rb, is now automatically loaded. You no longer have to write require "pp". [Feature #14123] > * Print backtrace and error message in reverse order (oldest call first, most recent call last). When a long backtrace appears on your terminal (TTY), you can easily find the cause line at the bottom of the backtrace. Note that the order is reversed only when the backtrace is printed out to the terminal directly. [Feature #8661] [experimental] [1]: https://www.ruby-lang.org/en/news/2017/12/25/ruby-2-5-0-released/ --- ruby.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby.be0 b/ruby.be0 index dbc48694a..18005c2d2 100755 --- a/ruby.be0 +++ b/ruby.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION ruby-2.3.4-0 +# BEE_VERSION ruby-2.5.5-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.)