gem-depclean 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/lib/commands/depclean_command.rb +1 -1
- data/lib/commands/world_command.rb +1 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.2.0
|
|
@@ -31,7 +31,7 @@ class Gem::Commands::DepcleanCommand < Gem::Command
|
|
|
31
31
|
return unless ask_yes_no 'Would you like to uninstall these gems?'
|
|
32
32
|
|
|
33
33
|
targets.each do |gem|
|
|
34
|
-
Gem::Uninstaller.new(gem.name, :version => gem.version, :ignore => true).uninstall
|
|
34
|
+
Gem::Uninstaller.new(gem.name, :version => gem.version, :user_install => true, :ignore => true).uninstall
|
|
35
35
|
end
|
|
36
36
|
end
|
|
37
37
|
|