2016-02-01 07:43:26 -05:00
|
|
|
# frozen_string_literal: true
|
2019-04-22 07:56:16 -04:00
|
|
|
require_relative "../command"
|
|
|
|
require_relative "../query_utils"
|
2007-11-10 02:48:56 -05:00
|
|
|
|
2020-01-31 21:14:04 -05:00
|
|
|
class Gem::Commands::SearchCommand < Gem::Command
|
|
|
|
include Gem::QueryUtils
|
2009-06-09 17:38:59 -04:00
|
|
|
|
2020-01-31 21:14:04 -05:00
|
|
|
def initialize
|
|
|
|
super "search", "Display remote gems whose name matches REGEXP",
|
2022-01-17 08:10:27 -05:00
|
|
|
:domain => :remote, :details => false, :versions => true,
|
2020-01-31 21:14:04 -05:00
|
|
|
:installed => nil, :version => Gem::Requirement.default
|
2013-07-22 18:46:50 -04:00
|
|
|
|
2020-01-31 21:14:04 -05:00
|
|
|
add_query_options
|
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
|