Project

General

Profile

Actions

Bug #15791

closed

Clarify reason for RbConfig's ruby_version not reflecting "teeny" value

Added by headius (Charles Nutter) almost 5 years ago. Updated over 4 years ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:92408]

Description

I did not realize that MRI always reports RbConfig::CONFIG['ruby_version'] without the "teeny" value. Instead, it makes it always 0:

$ rvm ruby-2.6.2 do ruby -v -e 'p RbConfig::CONFIG["ruby_version"]'
ruby 2.6.2p47 (2019-03-13 revision 67232) [x86_64-darwin18]
"2.6.0"

This seems like a bug to me. It is a visible behavior because several package-management systems (RubyGems, Bundler, stuff in Ruby switchers like RVM) use this value, rather than RUBY_VERSION, to set up directory paths.

I believe it should reflect the full, accurate version, but I have not been able to find any discussion about why it does not do so.

Updated by MSP-Greg (Greg L) almost 5 years ago

I always consider RbConfig::CONFIG['ruby_version'] as the ABI version, which is used in naming --user-install gem folders, etc.

If the version with 'teeny' was used, one would be recompiling extension gems everytime a 'teeny' release was done?

Updated by Eregon (Benoit Daloze) almost 5 years ago

Indeed, AFAIK it's the ABI version.

MSP-Greg (Greg L) wrote:

If the version with 'teeny' was used, one would be recompiling extension gems everytime a 'teeny' release was done?

Which IMHO is a safer thing to do, but I suppose some people disagree and it depends on the point of view :)

FWIW, I created https://github.com/postmodern/chruby/pull/410 so chruby would have a set of gems per installed Ruby version,
even if RUBY_VERSION or RbConfig::CONFIG["ruby_version"] doesn't change for alternative Ruby implementations between two releases.

Updated by headius (Charles Nutter) almost 5 years ago

MSP-Greg (Greg L) wrote:

I always consider RbConfig::CONFIG['ruby_version'] as the ABI version, which is used in naming --user-install gem folders, etc.

If the version with 'teeny' was used, one would be recompiling extension gems everytime a 'teeny' release was done?

Then why does it include .0 at all?

Updated by MSP-Greg (Greg L) almost 5 years ago

I assume it was decided a long time ago. 1.9.3 has a value of 1.9.1.

Maybe a decision was made later that ABI versions would only change on minor releases?

Updated by vo.x (Vit Ondruch) almost 5 years ago

ruby_version is user configurable variable:

https://github.com/ruby/ruby/blob/trunk/configure.ac#L3663

It was introduced to make possible parallel install e.g. two Ruby 2.6.0 side by side. Later somebody start to interpret it and add it different meanings, but it was never correct thing to do, therefore I would suggest against using ruby_version for anything meaningful. I tried to have this resolved by #11002, but the result was never satisfactory.

Updated by headius (Charles Nutter) over 4 years ago

  • Status changed from Open to Closed

Ok, if this is supposed to map the the ABI version, then I guess we'll leave it as is. It doesn't really have the same meaning on other impls, and I agree with Vit that it shouldn't be used for other purposes (like it seems to be used in RubyGems).

I'll consider this closed.

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0