Skip to content

Instantly share code, notes, and snippets.

@sethkrasnianski
Forked from odlp/update.sh
Created February 27, 2018 18:54
Show Gist options
  • Save sethkrasnianski/6389c947caf31c2c256b37c9f248eec8 to your computer and use it in GitHub Desktop.
Save sethkrasnianski/6389c947caf31c2c256b37c9f248eec8 to your computer and use it in GitHub Desktop.
Rbenv update Rubygems
#!/usr/bin/env sh
# Multiple vulnerabilities have been disclosed in RubyGems:
# https://www.ruby-lang.org/en/news/2018/02/17/multiple-vulnerabilities-in-rubygems/
#
# If you're an Rbenv user, here's any easy one-liner to upgrade to a
# safe version of Rubygems (2.7.6 or later) for each installed Ruby version:
for i in $( rbenv versions --bare ); do RBENV_VERSION=$i gem update --system && echo "\n$(ruby -v) using rubygems $(gem --version)\n"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment