18.4. Odinstalowywanie gemów

Problem

Chcemy usunąć zainstalowany gem z instalacji Ruby.

Rozwiązanie

Aby odinstalować gem, należy w wierszu polecenia wprowadzić polecenie gem uninstall:

$ gem uninstall blinkenlights
Attempting to uninstall gem 'blinkenlights'
Successfully uninstalled cmdparse version 0.0.2

Z poziomu kodu Ruby najbardziej niezawodnym sposobem na odinstalowanie gemu jest symulacja wywołania polecenia z wiersza polecenia za pomocą kodu Gem::GemRunner. Poniższy kod instaluje gem, a następnie natychmiast go usuwa:

require 'rubygems' require 'rubygems/installer' require 'rubygems/remote_installer' Gem::RemoteInstaller.new.install('blinkenlights') require 'rubygems/gem_runner' require 'rubygems/doc_manager' Gem.manage_gems ...

Get Ruby. Receptury now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.