Hello,
I've been asking myself why there bother with rubygem packages?
Gems have a different life cycle and are completely managed through the
gem interface:
Basically if one can do a
# yum install rubygem-rails
then one can do a
# gem install rails-2.3.8
But with gem one can also do
# gem install rails-2.3.3
Up to the rails application to specify which version (or library) to
use.
So gems of different versions can coexist where rubygems rpms of
different versions cannot be installed the same way and is redundant.
Assuming they can be installed in parallel then there is an issue with
the package name not showing the gem version i.e rubygem-rails.noarch.
So I ended wondering why maintain rubygems rpms at all, once ruby is
installed along with rubygems package then gem handles the rest.
I'm sorry if this discussion has been brought earlier but it doesn't
make sense for me.
Thanks for thoughts.
Gil