aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rubygems/local_remote_options.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rubygems/local_remote_options.rb')
-rw-r--r--lib/rubygems/local_remote_options.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rubygems/local_remote_options.rb b/lib/rubygems/local_remote_options.rb
index b752423845..77a8006f18 100644
--- a/lib/rubygems/local_remote_options.rb
+++ b/lib/rubygems/local_remote_options.rb
@@ -82,7 +82,7 @@ module Gem::LocalRemoteOptions
add_option(:"Local/Remote", '--clear-sources',
'Clear the gem sources') do |value, options|
- Gem.sources.clear
+ Gem.sources = nil
options[:sources_cleared] = true
end
end
@@ -123,7 +123,7 @@ module Gem::LocalRemoteOptions
# Add the --update-sources option
def add_update_sources_option
- add_option(:"Local/Remote", '-u', '--[no-]update-sources',
+ add_option(:Deprecated, '-u', '--[no-]update-sources',
'Update local source cache') do |value, options|
Gem.configuration.update_sources = value
end