Reputation: 99
How to uninstall Ruby's development kit on windows? I have to re-install ruby, because its installation path contained a space.
Upvotes: 3
Views: 9063
Reputation: 7074
You shouldn't have to delete it if you're just going to reinstall it and Ruby; just reinstall Ruby and then, in a Command Prompt window, cd
into the DevKit directory and run ruby dk.rb init
.
Upvotes: 2
Reputation: 5733
From the link you posted.
•If you previously installed the legacy DevKit devkit-3.4.5r3-20091110.7z, its artifacts were extracted into each Ruby installation and need to be manually removed. Remove the gcc.bat, make.bat, and sh.bat stub batch files in \bin and the \devkit subdirectory for each Ruby installation using the legacy DevKit.
•If you previously installed one of the legacy self-extracting DevKit’s, follow the SFX DevKit upgrade instructions.
The SFX upgrade instructions can be found here.
Upvotes: 1