2007-11-10 02:48:56 -05:00
|
|
|
require 'rubygems/command'
|
2013-07-08 18:41:03 -04:00
|
|
|
require 'rubygems/commands/query_command'
|
2007-11-10 02:48:56 -05:00
|
|
|
|
2013-07-08 18:41:03 -04:00
|
|
|
class Gem::Commands::SearchCommand < Gem::Commands::QueryCommand
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2009-06-09 17:38:59 -04:00
|
|
|
def initialize
|
2014-09-13 23:30:02 -04:00
|
|
|
super 'search', 'Display remote gems whose name matches REGEXP'
|
2009-06-09 17:38:59 -04:00
|
|
|
|
2013-07-08 18:41:03 -04:00
|
|
|
remove_option '--name-matches'
|
2013-07-22 18:46:50 -04:00
|
|
|
|
|
|
|
defaults[:domain] = :remote
|
2013-07-08 18:41:03 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def arguments # :nodoc:
|
2014-09-13 23:30:02 -04:00
|
|
|
"REGEXP regexp to search for in gem name"
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
2009-06-09 17:38:59 -04:00
|
|
|
|
|
|
|
def defaults_str # :nodoc:
|
2012-11-29 01:52:18 -05:00
|
|
|
"--remote --no-details"
|
2009-06-09 17:38:59 -04:00
|
|
|
end
|
|
|
|
|
2013-09-14 04:59:02 -04:00
|
|
|
def description # :nodoc:
|
|
|
|
<<-EOF
|
2014-09-13 23:30:02 -04:00
|
|
|
The search command displays remote gems whose name matches the given
|
|
|
|
regexp.
|
2013-09-14 04:59:02 -04:00
|
|
|
|
|
|
|
The --details option displays additional details from the gem but will
|
|
|
|
take a little longer to complete as it must download the information
|
|
|
|
individually from the index.
|
|
|
|
|
|
|
|
To list local gems use the list command.
|
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2013-07-08 18:41:03 -04:00
|
|
|
def usage # :nodoc:
|
2014-09-13 23:30:02 -04:00
|
|
|
"#{program_name} [REGEXP]"
|
2013-07-08 18:41:03 -04:00
|
|
|
end
|
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
end
|
2009-06-09 17:38:59 -04:00
|
|
|
|