gem-depclean 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- 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
|
|