This comes about because the Gem installation directory used by the gem
command, seen when using gem env
, is set to something like:
<base_ruby_dir>/lib/ruby/gems/1.9.1
My question is why?
Shouldn't the folder be called:
<base_ruby_dir>/lib/ruby/gems/1.9.x
or
<base_ruby_dir>/lib/ruby/gems/1.9
or else couldn't there be one per version of Ruby, like:
c:/ruby191/lib/ruby/gems/1.9.1
c:/ruby192/lib/ruby/gems/1.9.2
c:/ruby193/lib/ruby/gems/1.9.3
Not a critical problem I know, I was just wondering.