Update a Ruby gem with bundler
August 12, 2022 ‐ 1 min read
Bundler is generally the package manager you would use in your Ruby projects. When installing a gem you probably got the latest version installed on your system. But when time goes by, newer versions get released making it time to upgrade to later versions again!
To update a gem with bundler we can run the following command.
$ bundle update <name>