Cómo actualizar Ruby Gems

Para actualizar Ruby Gems a la última versión estable, en primera instancia lo intenté de este modo:

gem update --system

Tras varios dolores de cabeza, actualización de dependencias y varios sucesos, no conseguía hacerlo, y pese a no tener la última versión, siempre recibía el siguiente mensaje:

# gem update --system
Updating RubyGems

Nothing to update

Finalmente, encontré una forma más sencilla de hacerlo, primero instalamos rubygems-update (como root):

gem install rubygems-update

Y después simplemente con el siguiente comando actualizaremos a la última versión estable de Ruby Gems (también como root):

update_rubygems

4 comentarios en “Cómo actualizar Ruby Gems

  1. RubyGems installed the following executables:
    /usr/bin/gem2.3

    Ruby Interactive (ri) documentation was installed. ri is kind of like man
    pages for ruby libraries. You may access it like this:
    ri Classname
    ri Classname.class_method
    ri Classname#instance_method
    If you do not wish to install this documentation in the future, use the
    –no-document flag, or set it as the default in your ~/.gemrc file. See
    ‘gem help env’ for details.

    me sale ese mensaje, porfa ayuda
    gracias.

Comments are closed.