PATH: //opt/alt/ruby33/share/rubygems/rubygems/commands
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 build_command.rb
↓
X
📄 cert_command.rb
↓
X
📄 check_command.rb
↓
X
📄 cleanup_command.rb
↓
X
📄 contents_command.rb
↓
X
📄 dependency_command.rb
↓
X
📄 environment_command.rb
↓
X
📄 exec_command.rb
↓
X
📄 fetch_command.rb
↓
X
📄 generate_index_command.rb
↓
X
📄 help_command.rb
↓
X
📄 info_command.rb
↓
X
📄 install_command.rb
↓
X
📄 list_command.rb
↓
X
📄 lock_command.rb
↓
X
📄 mirror_command.rb
↓
X
📄 open_command.rb
↓
X
📄 outdated_command.rb
↓
X
📄 owner_command.rb
↓
X
📄 pristine_command.rb
↓
X
📄 push_command.rb
↓
X
📄 query_command.rb
↓
X
📄 rdoc_command.rb
↓
X
📄 rebuild_command.rb
↓
X
📄 search_command.rb
↓
X
📄 server_command.rb
↓
X
📄 setup_command.rb
↓
X
📄 signin_command.rb
↓
X
📄 signout_command.rb
↓
X
📄 sources_command.rb
↓
X
📄 specification_command.rb
↓
X
📄 stale_command.rb
↓
X
📄 uninstall_command.rb
↓
X
📄 unpack_command.rb
↓
X
📄 update_command.rb
↓
X
📄 which_command.rb
↓
X
📄 yank_command.rb
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: search_command.rb
# frozen_string_literal: true require_relative "../command" require_relative "../query_utils" class Gem::Commands::SearchCommand < Gem::Command include Gem::QueryUtils def initialize super "search", "Display remote gems whose name matches REGEXP", domain: :remote, details: false, versions: true, installed: nil, version: Gem::Requirement.default add_query_options end def arguments # :nodoc: "REGEXP regexp to search for in gem name" end def defaults_str # :nodoc: "--remote --no-details" end def description # :nodoc: <<-EOF The search command displays remote gems whose name matches the given regexp. 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 def usage # :nodoc: "#{program_name} [REGEXP]" end end
SIMPAN PERUBAHAN