Class: Gem::Commands::GenerateIndexCommand
- Inherits:
-
Gem::Command
- Object
- Gem::Command
- Gem::Commands::GenerateIndexCommand
- Defined in:
- lib/rubygems/commands/generate_index_command.rb
Instance Attribute Summary
Attributes inherited from Gem::Command
#command, #defaults, #options, #program_name, #summary
Class Method Summary collapse
-
.new ⇒ Object
remove_method(:initialize) warns, but removing new does not warn.
Methods inherited from Gem::Command
add_common_option, #add_extra_args, #add_option, add_specific_extra_args, #arguments, #begins?, build_args, build_args=, #check_deprecated_options, common_options, #defaults_str, #deprecate_option, #deprecated?, #description, #execute, extra_args, extra_args=, #extract_gem_name_and_version, #get_all_gem_names, #get_all_gem_names_and_versions, #get_one_gem_name, #get_one_optional_argument, #handle_options, #handles?, #initialize, #invoke, #invoke_with_build_args, #merge_options, #remove_option, #show_help, #show_lookup_failure, specific_extra_args, specific_extra_args_hash, #usage, #when_invoked
Methods included from UserInteraction
#alert, #alert_error, #alert_warning, #ask, #ask_for_password, #ask_yes_no, #choose_from_list, #say, #terminate_interaction, #verbose
Methods included from DefaultUserInteraction
ui, #ui, ui=, #ui=, use_ui, #use_ui
Methods included from Text
#clean_text, #format_text, #levenshtein_distance, #min3, #truncate_text
Constructor Details
This class inherits a constructor from Gem::Command
Class Method Details
.new ⇒ Object
remove_method(:initialize) warns, but removing new does not warn
43 44 45 46 47 |
# File 'lib/rubygems/commands/generate_index_command.rb', line 43 def self.new command = allocate command.send(:initialize, "generate_index", "Generates the index files for a gem server directory (requires rubygems-generate_index)") command end |