Server : Apache System : Linux server1.cgrithy.com 3.10.0-1160.95.1.el7.x86_64 #1 SMP Mon Jul 24 13:59:37 UTC 2023 x86_64 User : nobody ( 99) PHP Version : 8.1.23 Disable Function : NONE Directory : /usr/share/rubygems/rubygems/commands/ |
require 'rubygems/command' require 'rubygems/commands/query_command' class Gem::Commands::SearchCommand < Gem::Commands::QueryCommand def initialize super 'search', 'Display all gems whose name contains STRING' remove_option '--name-matches' defaults[:domain] = :remote end def arguments # :nodoc: "STRING fragment of gem name to search for" end def defaults_str # :nodoc: "--remote --no-details" end def usage # :nodoc: "#{program_name} [STRING]" end def execute string = get_one_optional_argument options[:name] = /#{string}/i super end end