Skip to content
This repository has been archived by the owner on Aug 19, 2023. It is now read-only.

Latest commit

 

History

History
26 lines (18 loc) · 667 Bytes

ruby-gems.md

File metadata and controls

26 lines (18 loc) · 667 Bytes
description
The RubyGems update module

RubyGems

{% hint style="info" %} Gems is the package manager for Ruby packages on macOS. {% endhint %}

Understanding the update command

The RubyGems update module consists of three commands:

  • gem update --system : This upgrades gem and its packages.
  • gem cleanup : This cleans up the gem packages folder.
# Ruby update commands.
{ echo "Ruby"; echo ""; gem update --system; gem cleanup; } >> $LOG
catcher Ruby
line

To add different options to the module read the RubyGems documentation. To disable this module comment out the code above.