Skip to content

Instantly share code, notes, and snippets.

@schneems
Created November 12, 2014 18:55
Show Gist options
  • Save schneems/f3b047c019c0822cd8d3 to your computer and use it in GitHub Desktop.
Save schneems/f3b047c019c0822cd8d3 to your computer and use it in GitHub Desktop.
list = `gem list`
list.each_line do |line|
next unless line.match(/\(/)
name = line.split("(").first
cmd = "gem uninstall #{name} --force --executables"
puts cmd
result = `#{cmd}`
puts result unless $?.success?
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment