Do I need to remove rubygems-update?

I read the Agile Web Development book with Rails the other day. The author issues the following command to update rubygems:

gem update --system
gem uninstall rubygems-update

Why is it necessary / good practice to remove rubygems-update after updating rubygems?

+3
source share
1 answer

There is definitely no need to remove it rubygems-update, since your rubygems function will work fine if it is still installed. This is optional / pleasant to do, because it is used only to update rubygems, and thus, after updating rubygems, pearls rubygems-updateare just an additional file and take up space on your computer and appear when you run it unnecessarily gem list.

+3
source

All Articles