2011-01-18 19:08:49 -05:00
|
|
|
######################################################################
|
|
|
|
# This file is imported from the rubygems project.
|
|
|
|
# DO NOT make modifications in this repo. They _will_ be reverted!
|
|
|
|
# File a patch instead and assign it to Ryan Davis or Eric Hodel.
|
|
|
|
######################################################################
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
require 'rubygems/command'
|
|
|
|
|
|
|
|
class Gem::Commands::WhichCommand < Gem::Command
|
|
|
|
def initialize
|
2008-09-25 06:13:50 -04:00
|
|
|
super 'which', 'Find the location of a library file you can require',
|
2007-11-10 02:48:56 -05:00
|
|
|
:search_gems_first => false, :show_all => false
|
|
|
|
|
|
|
|
add_option '-a', '--[no-]all', 'show all matching files' do |show_all, options|
|
|
|
|
options[:show_all] = show_all
|
|
|
|
end
|
|
|
|
|
|
|
|
add_option '-g', '--[no-]gems-first',
|
|
|
|
'search gems before non-gems' do |gems_first, options|
|
|
|
|
options[:search_gems_first] = gems_first
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def arguments # :nodoc:
|
|
|
|
"FILE name of file to find"
|
|
|
|
end
|
|
|
|
|
|
|
|
def defaults_str # :nodoc:
|
|
|
|
"--no-gems-first --no-all"
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
2010-02-21 21:52:35 -05:00
|
|
|
found = false
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
options[:args].each do |arg|
|
2011-05-31 23:45:05 -04:00
|
|
|
arg = arg.sub(/#{Regexp.union(*Gem.suffixes)}$/, '')
|
2007-11-10 02:48:56 -05:00
|
|
|
dirs = $LOAD_PATH
|
2011-05-31 23:45:05 -04:00
|
|
|
|
|
|
|
spec = Gem::Specification.find_by_path arg
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
if spec then
|
|
|
|
if options[:search_gems_first] then
|
|
|
|
dirs = gem_paths(spec) + $LOAD_PATH
|
|
|
|
else
|
|
|
|
dirs = $LOAD_PATH + gem_paths(spec)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
# TODO: this is totally redundant and stupid
|
2007-11-10 02:48:56 -05:00
|
|
|
paths = find_paths arg, dirs
|
|
|
|
|
|
|
|
if paths.empty? then
|
2010-02-21 21:52:35 -05:00
|
|
|
alert_error "Can't find ruby library file or shared library #{arg}"
|
2007-11-10 02:48:56 -05:00
|
|
|
else
|
|
|
|
say paths
|
2010-02-21 21:52:35 -05:00
|
|
|
found = true
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
end
|
2010-02-21 21:52:35 -05:00
|
|
|
|
|
|
|
terminate_interaction 1 unless found
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def find_paths(package_name, dirs)
|
|
|
|
result = []
|
|
|
|
|
|
|
|
dirs.each do |dir|
|
2011-05-31 23:45:05 -04:00
|
|
|
Gem.suffixes.each do |ext|
|
2007-11-10 02:48:56 -05:00
|
|
|
full_path = File.join dir, "#{package_name}#{ext}"
|
|
|
|
if File.exist? full_path then
|
|
|
|
result << full_path
|
|
|
|
return result unless options[:show_all]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
|
|
|
def gem_paths(spec)
|
|
|
|
spec.require_paths.collect { |d| File.join spec.full_gem_path, d }
|
|
|
|
end
|
|
|
|
|
|
|
|
def usage # :nodoc:
|
2010-02-21 21:52:35 -05:00
|
|
|
"#{program_name} FILE [FILE ...]"
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2008-09-25 06:13:50 -04:00
|
|
|
|