# File rubygems/commands/fetch_command.rb, line 35
def execute
version = options[:version] || Gem::Requirement.default
all = Gem::Requirement.default != version
gem_names = get_all_gem_names
gem_names.each do |gem_name|
dep = Gem::Dependency.new gem_name, version
dep.prerelease = options[:prerelease]
specs_and_sources = Gem::SpecFetcher.fetcher.fetch(dep, all, true,
dep.prerelease?)
specs_and_sources, errors =
Gem::SpecFetcher.fetcher.fetch_with_errors(dep, all, true,
dep.prerelease?)
spec, source_uri = specs_and_sources.sort_by { |s,| s.version }.last
if spec.nil? then
show_lookup_failure gem_name, version, errors
next
end
path = Gem::RemoteFetcher.fetcher.download spec, source_uri
FileUtils.mv path, spec.file_name
say "Downloaded #{spec.full_name}"
end
end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please see Improve the docs, or visit Documenting-ruby.org.