Base class for all Gem commands. When creating a new gem command, define new, execute, arguments, defaults_str, description and usage (as appropriate). See the above mentioned methods for details.
A very good example to look at is Gem::Commands::ContentsCommand
- A
- B
- C
- D
- E
- G
- H
- I
- M
- N
- P
- R
- S
- U
- W
[R] | command | The name of the command. |
[RW] | defaults | The default options for the command. |
[R] | options | The options for the command. |
[RW] | program_name | The name of the command for command-line invocation. |
[RW] | summary | A short description of the command. |
Add a list of extra arguments for the given command. args
may
be an array or a string to be split on white space.
Arguments used when building gems
Initializes a generic gem command named command
.
summary
is a short description displayed in `gem help
commands`. defaults
are the default options. Defaults should
be mirrored in defaults_str, unless there
are none.
When defining a new command subclass, use #add_option to add command-line switches.
Unhandled arguments (gem names, files, etc.) are left in
options[:args]
.
# File ../ruby/lib/rubygems/command.rb, line 116 def initialize(command, summary=nil, defaults={}) @command = command @summary = summary @program_name = "gem #{command}" @defaults = defaults @options = defaults.dup @option_groups = Hash.new { |h,k| h[k] = [] } @parser = nil @when_invoked = nil end
Return an array of extra arguments for the command. The extra arguments come from the gem configuration file read at program startup.
Accessor for the specific extra args hash (self initializing).
Adds extra args from ~/.gemrc
# File ../ruby/lib/rubygems/command.rb, line 355 def add_extra_args(args) result = [] s_extra = Gem::Command.specific_extra_args(@command) extra = Gem::Command.extra_args + s_extra until extra.empty? do ex = [] ex << extra.shift ex << extra.shift if extra.first.to_s =~ /^[^-]/ result << ex if handles?(ex) end result.flatten! result.concat(args) result end
Add a command-line option and handler to the command.
See OptionParser#make_switch
for an explanation of opts
.
handler
will be called with two values, the value of the
argument and the options hash.
If the first argument of #add_option is a Symbol, it's used to group options in output. See `gem help list` for an example.
Override to provide details of the arguments a command takes. It should return a left-justified string, one argument per line.
For example:
def usage
"#{program_name} FILE [FILE ...]"
end
def arguments
"FILE name of file to find"
end
True if long
begins with the characters from
short
.
Override to display the default values of the command options. (similar to
arguments
, but displays the default values).
For example:
def defaults_str
--no-gems-first --no-all
end
Override to display a longer description of what this command does.
Override to provide command handling.
options will be filled in
with your parsed options, unparsed options will be left in
options[:args]
.
See also: get_all_gem_names, get_one_gem_name, get_one_optional_argument
Get all gem names from the command line.
Get a single gem name from the command line. Fail if there is no gem name or if there is more than one gem name given.
# File ../ruby/lib/rubygems/command.rb, line 186 def get_one_gem_name args = options[:args] if args.nil? or args.empty? then raise Gem::CommandLineError, "Please specify a gem name on the command line (e.g. gem build GEMNAME)" end if args.size > 1 then raise Gem::CommandLineError, "Too many gem names (#{args.join(', ')}); please specify only one" end args.first end
Get a single optional argument from the command line. If more than one argument is given, return only the first. Return nil if none are given.
Handle the given list of arguments by parsing them and recording the results.
True if the command handles the given argument list.
Invoke the command with the given list of arguments.
Merge a set of command options with the set of default options (without modifying the default option hash).
Remove previously defined command-line argument name
.
Display the help message for the command.
Display to the user that a gem couldn't be found and reasons why
# File ../ruby/lib/rubygems/command.rb, line 151 def show_lookup_failure(gem_name, version, errors, domain) if errors and !errors.empty? alert_error "Could not find a valid gem '#{gem_name}' (#{version}), here is why:" errors.each { |x| say " #{x.wordy}" } else alert_error "Could not find a valid gem '#{gem_name}' (#{version}) in any repository" end unless domain == :local then # HACK suggestions = Gem::SpecFetcher.fetcher.suggest_gems_from_name gem_name unless suggestions.empty? alert_error "Possible alternatives: #{suggestions.join(", ")}" end end end
Override to display the usage for an individual gem command.
The text “[options]” is automatically appended to the usage text.
Call the given block when invoked.
Normal command invocations just executes the execute
method of
the command. Specifying an invocation block allows the test methods to
override the normal action of a command to determine that it has been
invoked correctly.
# File ../ruby/lib/rubygems/command.rb, line 436 def configure_options(header, option_list) return if option_list.nil? or option_list.empty? header = header.to_s.empty? ? '' : "#{header} " @parser.separator " #{header}Options:" option_list.each do |args, handler| args.select { |arg| arg =~ /^-/ } @parser.on(*args) do |value| handler.call(value, @options) end end @parser.separator '' end
# File ../ruby/lib/rubygems/command.rb, line 383 def create_option_parser @parser = OptionParser.new @parser.separator nil regular_options = @option_groups.delete :options configure_options "", regular_options @option_groups.sort_by { |n,_| n.to_s }.each do |group_name, option_list| @parser.separator nil configure_options group_name, option_list end @parser.separator nil configure_options "Common", Gem::Command.common_options unless arguments.empty? @parser.separator nil @parser.separator " Arguments:" arguments.split(/\n/).each do |arg_desc| @parser.separator " #{arg_desc}" end end if @summary then @parser.separator nil @parser.separator " Summary:" wrap(@summary, 80 - 4).split("\n").each do |line| @parser.separator " #{line.strip}" end end if description then formatted = description.split("\n\n").map do |chunk| wrap chunk, 80 - 4 end.join "\n" @parser.separator nil @parser.separator " Description:" formatted.split("\n").each do |line| @parser.separator " #{line.rstrip}" end end unless defaults_str.empty? @parser.separator nil @parser.separator " Defaults:" defaults_str.split(/\n/).each do |line| @parser.separator " #{line}" end end end
Create on demand parser.