2007-11-10 02:48:56 -05:00
|
|
|
require 'rubygems/command'
|
|
|
|
require 'rubygems/local_remote_options'
|
|
|
|
require 'rubygems/version_option'
|
|
|
|
|
|
|
|
class Gem::Commands::FetchCommand < Gem::Command
|
|
|
|
|
|
|
|
include Gem::LocalRemoteOptions
|
|
|
|
include Gem::VersionOption
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
super 'fetch', 'Download a gem and place it in the current directory'
|
|
|
|
|
|
|
|
add_bulk_threshold_option
|
|
|
|
add_proxy_option
|
|
|
|
add_source_option
|
2012-04-17 20:04:12 -04:00
|
|
|
add_clear_sources_option
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
add_version_option
|
|
|
|
add_platform_option
|
2010-02-21 21:52:35 -05:00
|
|
|
add_prerelease_option
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def arguments # :nodoc:
|
|
|
|
'GEMNAME name of gem to download'
|
|
|
|
end
|
|
|
|
|
|
|
|
def defaults_str # :nodoc:
|
|
|
|
"--version '#{Gem::Requirement.default}'"
|
|
|
|
end
|
|
|
|
|
|
|
|
def usage # :nodoc:
|
|
|
|
"#{program_name} GEMNAME [GEMNAME ...]"
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
|
|
|
version = options[:version] || Gem::Requirement.default
|
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
platform = Gem.platforms.last
|
2007-11-10 02:48:56 -05:00
|
|
|
gem_names = get_all_gem_names
|
|
|
|
|
|
|
|
gem_names.each do |gem_name|
|
|
|
|
dep = Gem::Dependency.new gem_name, version
|
2010-02-21 21:52:35 -05:00
|
|
|
dep.prerelease = options[:prerelease]
|
2008-06-17 18:04:18 -04:00
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
specs_and_sources, errors = Gem::SpecFetcher.fetcher.spec_for_dependency dep
|
2011-05-31 23:45:05 -04:00
|
|
|
if platform then
|
|
|
|
filtered = specs_and_sources.select { |s,| s.platform == platform }
|
|
|
|
specs_and_sources = filtered unless filtered.empty?
|
|
|
|
end
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
spec, source = specs_and_sources.sort_by { |s,| s.version }.first
|
2007-11-10 02:48:56 -05:00
|
|
|
|
2008-03-31 18:40:06 -04:00
|
|
|
if spec.nil? then
|
2011-01-18 19:08:49 -05:00
|
|
|
show_lookup_failure gem_name, version, errors, options[:domain]
|
2008-03-31 18:40:06 -04:00
|
|
|
next
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
2012-11-29 01:52:18 -05:00
|
|
|
source.download spec
|
2008-03-31 18:40:06 -04:00
|
|
|
|
|
|
|
say "Downloaded #{spec.full_name}"
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|