Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Update Rubygems for all rbenv rubies
#! /usr/bin/env bash
set -e
eval "$(rbenv init -)"
for version in `rbenv whence gem`; do
rbenv shell "$version"
echo "Updating rubygems for $version"
gem update --system --no-document --quiet
echo ""
done
@dannykopping
Copy link

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment