2007-11-10 10:48:56 +03:00
|
|
|
#--
|
|
|
|
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
|
|
|
|
# All rights reserved.
|
|
|
|
# See LICENSE.txt for permissions.
|
|
|
|
#++
|
|
|
|
|
|
|
|
require 'optparse'
|
|
|
|
require 'rubygems/user_interaction'
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# 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
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
class Gem::Command
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
include Gem::UserInteraction
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# The name of the command.
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
attr_reader :command
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# The options for the command.
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
attr_reader :options
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# The default options for the command.
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
attr_accessor :defaults
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# The name of the command for command-line invocation.
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
attr_accessor :program_name
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# A short description of the command.
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
attr_accessor :summary
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# Arguments used when building gems
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def self.build_args
|
|
|
|
@build_args ||= []
|
|
|
|
end
|
2009-12-08 10:19:09 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def self.build_args=(value)
|
|
|
|
@build_args = value
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def self.common_options
|
|
|
|
@common_options ||= []
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def self.add_common_option(*args, &handler)
|
|
|
|
Gem::Command.common_options << [args, handler]
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def self.extra_args
|
|
|
|
@extra_args ||= []
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def self.extra_args=(value)
|
|
|
|
case value
|
|
|
|
when Array
|
|
|
|
@extra_args = value
|
|
|
|
when String
|
|
|
|
@extra_args = value.split
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
2009-06-10 01:38:59 +04:00
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# Return an array of extra arguments for the command. The extra arguments
|
|
|
|
# come from the gem configuration file read at program startup.
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def self.specific_extra_args(cmd)
|
|
|
|
specific_extra_args_hash[cmd]
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# Add a list of extra arguments for the given command. +args+ may be an
|
|
|
|
# array or a string to be split on white space.
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def self.add_specific_extra_args(cmd,args)
|
|
|
|
args = args.split(/\s+/) if args.kind_of? String
|
|
|
|
specific_extra_args_hash[cmd] = args
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# Accessor for the specific extra args hash (self initializing).
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def self.specific_extra_args_hash
|
|
|
|
@specific_extra_args_hash ||= Hash.new do |h,k|
|
|
|
|
h[k] = Array.new
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
2009-06-10 01:38:59 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# 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
|
|
|
|
# <tt>options[:args]</tt>.
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
##
|
|
|
|
# True if +long+ begins with the characters from +short+.
|
|
|
|
|
|
|
|
def begins?(long, short)
|
|
|
|
return false if short.nil?
|
|
|
|
long[0, short.length] == short
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Override to provide command handling.
|
|
|
|
#
|
|
|
|
# #options will be filled in with your parsed options, unparsed options will
|
|
|
|
# be left in <tt>options[:args]</tt>.
|
|
|
|
#
|
|
|
|
# See also: #get_all_gem_names, #get_one_gem_name,
|
|
|
|
# #get_one_optional_argument
|
|
|
|
|
|
|
|
def execute
|
|
|
|
raise Gem::Exception, "generic command has no actions"
|
|
|
|
end
|
|
|
|
|
2010-04-22 12:24:42 +04:00
|
|
|
##
|
|
|
|
# Display to the user that a gem couldn't be found and reasons why
|
2011-01-19 03:08:49 +03:00
|
|
|
|
|
|
|
def show_lookup_failure(gem_name, version, errors, domain)
|
2010-04-22 12:24:42 +04:00
|
|
|
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
|
2011-01-19 03:08:49 +03:00
|
|
|
|
|
|
|
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
|
2010-04-22 12:24:42 +04:00
|
|
|
end
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# Get all gem names from the command line.
|
|
|
|
|
|
|
|
def get_all_gem_names
|
|
|
|
args = options[:args]
|
|
|
|
|
|
|
|
if args.nil? or args.empty? then
|
|
|
|
raise Gem::CommandLineError,
|
|
|
|
"Please specify at least one gem name (e.g. gem build GEMNAME)"
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
2008-02-10 11:00:19 +03:00
|
|
|
|
2010-11-08 23:58:42 +03:00
|
|
|
args.select { |arg| arg !~ /^-/ }
|
2009-06-10 01:38:59 +04:00
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
2010-02-22 05:52:35 +03:00
|
|
|
# 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.
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def get_one_gem_name
|
|
|
|
args = options[:args]
|
2008-02-10 11:00:19 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
if args.nil? or args.empty? then
|
|
|
|
raise Gem::CommandLineError,
|
|
|
|
"Please specify a gem name on the command line (e.g. gem build GEMNAME)"
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
if args.size > 1 then
|
|
|
|
raise Gem::CommandLineError,
|
|
|
|
"Too many gem names (#{args.join(', ')}); please specify only one"
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
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.
|
|
|
|
|
|
|
|
def get_one_optional_argument
|
|
|
|
args = options[:args] || []
|
|
|
|
args.first
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# 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
|
2009-12-08 10:19:09 +03:00
|
|
|
#
|
2009-06-10 01:38:59 +04:00
|
|
|
# def arguments
|
|
|
|
# "FILE name of file to find"
|
|
|
|
# end
|
|
|
|
|
|
|
|
def arguments
|
|
|
|
""
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# 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
|
|
|
|
|
|
|
|
def defaults_str
|
|
|
|
""
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Override to display a longer description of what this command does.
|
|
|
|
|
|
|
|
def description
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Override to display the usage for an individual gem command.
|
|
|
|
#
|
|
|
|
# The text "[options]" is automatically appended to the usage text.
|
|
|
|
|
|
|
|
def usage
|
|
|
|
program_name
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Display the help message for the command.
|
|
|
|
|
|
|
|
def show_help
|
|
|
|
parser.program_name = usage
|
|
|
|
say parser
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Invoke the command with the given list of arguments.
|
|
|
|
|
|
|
|
def invoke(*args)
|
2010-02-22 05:52:35 +03:00
|
|
|
handle_options args
|
|
|
|
|
|
|
|
if options[:help] then
|
2009-06-10 01:38:59 +04:00
|
|
|
show_help
|
2010-02-22 05:52:35 +03:00
|
|
|
elsif @when_invoked then
|
|
|
|
@when_invoked.call options
|
2009-06-10 01:38:59 +04:00
|
|
|
else
|
|
|
|
execute
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
2009-06-10 01:38:59 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
def when_invoked(&block)
|
|
|
|
@when_invoked = block
|
|
|
|
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.
|
|
|
|
|
|
|
|
def add_option(*opts, &handler) # :yields: value, options
|
|
|
|
group_name = Symbol === opts.first ? opts.shift : :options
|
|
|
|
|
|
|
|
@option_groups[group_name] << [opts, handler]
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Remove previously defined command-line argument +name+.
|
|
|
|
|
|
|
|
def remove_option(name)
|
|
|
|
@option_groups.each do |_, option_list|
|
|
|
|
option_list.reject! { |args, _| args.any? { |x| x =~ /^#{name}/ } }
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
2009-06-10 01:38:59 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Merge a set of command options with the set of default options (without
|
|
|
|
# modifying the default option hash).
|
|
|
|
|
|
|
|
def merge_options(new_options)
|
|
|
|
@options = @defaults.clone
|
|
|
|
new_options.each do |k,v| @options[k] = v end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# True if the command handles the given argument list.
|
|
|
|
|
|
|
|
def handles?(args)
|
|
|
|
begin
|
|
|
|
parser.parse!(args.dup)
|
|
|
|
return true
|
|
|
|
rescue
|
|
|
|
return false
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
2009-06-10 01:38:59 +04:00
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# Handle the given list of arguments by parsing them and recording the
|
|
|
|
# results.
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def handle_options(args)
|
|
|
|
args = add_extra_args(args)
|
|
|
|
@options = @defaults.clone
|
|
|
|
parser.parse!(args)
|
|
|
|
@options[:args] = args
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# Adds extra args from ~/.gemrc
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def add_extra_args(args)
|
|
|
|
result = []
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
s_extra = Gem::Command.specific_extra_args(@command)
|
|
|
|
extra = Gem::Command.extra_args + s_extra
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
until extra.empty? do
|
|
|
|
ex = []
|
|
|
|
ex << extra.shift
|
|
|
|
ex << extra.shift if extra.first.to_s =~ /^[^-]/
|
|
|
|
result << ex if handles?(ex)
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
result.flatten!
|
|
|
|
result.concat(args)
|
|
|
|
result
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
private
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# Create on demand parser.
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def parser
|
|
|
|
create_option_parser if @parser.nil?
|
|
|
|
@parser
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def create_option_parser
|
|
|
|
@parser = OptionParser.new
|
2008-02-10 11:00:19 +03:00
|
|
|
|
2010-02-22 05:52:35 +03:00
|
|
|
@parser.separator nil
|
2009-06-10 01:38:59 +04:00
|
|
|
regular_options = @option_groups.delete :options
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
configure_options "", regular_options
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
@option_groups.sort_by { |n,_| n.to_s }.each do |group_name, option_list|
|
2010-02-22 05:52:35 +03:00
|
|
|
@parser.separator nil
|
2009-06-10 01:38:59 +04:00
|
|
|
configure_options group_name, option_list
|
|
|
|
end
|
2008-02-10 11:00:19 +03:00
|
|
|
|
2010-02-22 05:52:35 +03:00
|
|
|
@parser.separator nil
|
2009-06-10 01:38:59 +04:00
|
|
|
configure_options "Common", Gem::Command.common_options
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
unless arguments.empty?
|
2010-02-22 05:52:35 +03:00
|
|
|
@parser.separator nil
|
|
|
|
@parser.separator " Arguments:"
|
2009-06-10 01:38:59 +04:00
|
|
|
arguments.split(/\n/).each do |arg_desc|
|
2010-02-22 05:52:35 +03:00
|
|
|
@parser.separator " #{arg_desc}"
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-06-01 07:45:05 +04:00
|
|
|
if @summary then
|
|
|
|
@parser.separator nil
|
|
|
|
@parser.separator " Summary:"
|
|
|
|
wrap(@summary, 80 - 4).split("\n").each do |line|
|
|
|
|
@parser.separator " #{line.strip}"
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
if description then
|
|
|
|
formatted = description.split("\n\n").map do |chunk|
|
2010-02-22 05:52:35 +03:00
|
|
|
wrap chunk, 80 - 4
|
|
|
|
end.join "\n"
|
2009-06-10 01:38:59 +04:00
|
|
|
|
2010-02-22 05:52:35 +03:00
|
|
|
@parser.separator nil
|
2009-06-10 01:38:59 +04:00
|
|
|
@parser.separator " Description:"
|
|
|
|
formatted.split("\n").each do |line|
|
|
|
|
@parser.separator " #{line.rstrip}"
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
unless defaults_str.empty?
|
2010-02-22 05:52:35 +03:00
|
|
|
@parser.separator nil
|
|
|
|
@parser.separator " Defaults:"
|
2009-06-10 01:38:59 +04:00
|
|
|
defaults_str.split(/\n/).each do |line|
|
2010-02-22 05:52:35 +03:00
|
|
|
@parser.separator " #{line}"
|
2009-06-10 01:38:59 +04:00
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
2009-06-10 01:38:59 +04:00
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def configure_options(header, option_list)
|
|
|
|
return if option_list.nil? or option_list.empty?
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
header = header.to_s.empty? ? '' : "#{header} "
|
|
|
|
@parser.separator " #{header}Options:"
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
option_list.each do |args, handler|
|
2010-11-08 23:58:42 +03:00
|
|
|
args.select { |arg| arg =~ /^-/ }
|
2009-06-10 01:38:59 +04:00
|
|
|
@parser.on(*args) do |value|
|
|
|
|
handler.call(value, @options)
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
@parser.separator ''
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# Wraps +text+ to +width+
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
def wrap(text, width) # :doc:
|
|
|
|
text.gsub(/(.{1,#{width}})( +|$\n?)|(.{1,#{width}})/, "\\1\\3\n")
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
# ----------------------------------------------------------------
|
|
|
|
# Add the options common to all commands.
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
add_common_option('-h', '--help',
|
|
|
|
'Get help on this command') do |value, options|
|
|
|
|
options[:help] = true
|
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
add_common_option('-V', '--[no-]verbose',
|
|
|
|
'Set the verbose level of output') do |value, options|
|
|
|
|
# Set us to "really verbose" so the progress meter works
|
|
|
|
if Gem.configuration.verbose and value then
|
|
|
|
Gem.configuration.verbose = 1
|
|
|
|
else
|
|
|
|
Gem.configuration.verbose = value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
add_common_option('-q', '--quiet', 'Silence commands') do |value, options|
|
|
|
|
Gem.configuration.verbose = false
|
|
|
|
end
|
|
|
|
|
|
|
|
# Backtrace and config-file are added so they show up in the help
|
|
|
|
# commands. Both options are actually handled before the other
|
|
|
|
# options get parsed.
|
|
|
|
|
|
|
|
add_common_option('--config-file FILE',
|
|
|
|
'Use this config file instead of default') do
|
|
|
|
end
|
|
|
|
|
|
|
|
add_common_option('--backtrace',
|
|
|
|
'Show stack backtrace on errors') do
|
|
|
|
end
|
|
|
|
|
|
|
|
add_common_option('--debug',
|
|
|
|
'Turn on Ruby debugging') do
|
|
|
|
end
|
|
|
|
|
|
|
|
# :stopdoc:
|
|
|
|
|
2010-02-22 05:52:35 +03:00
|
|
|
HELP = <<-HELP
|
|
|
|
RubyGems is a sophisticated package manager for Ruby. This is a
|
|
|
|
basic help message containing pointers to more information.
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
gem -h/--help
|
|
|
|
gem -v/--version
|
|
|
|
gem command [arguments...] [options...]
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
gem install rake
|
|
|
|
gem list --local
|
|
|
|
gem build package.gemspec
|
|
|
|
gem help install
|
|
|
|
|
|
|
|
Further help:
|
|
|
|
gem help commands list all 'gem' commands
|
|
|
|
gem help examples show some examples of usage
|
|
|
|
gem help platforms show information about platforms
|
|
|
|
gem help <COMMAND> show help on COMMAND
|
|
|
|
(e.g. 'gem help install')
|
|
|
|
gem server present a web page at
|
|
|
|
http://localhost:8808/
|
|
|
|
with info about installed gems
|
|
|
|
Further information:
|
|
|
|
http://rubygems.rubyforge.org
|
|
|
|
HELP
|
2009-06-10 01:38:59 +04:00
|
|
|
|
|
|
|
# :startdoc:
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
end
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
##
|
|
|
|
# This is where Commands will be placed in the namespace
|
2007-11-10 10:48:56 +03:00
|
|
|
|
2009-06-10 01:38:59 +04:00
|
|
|
module Gem::Commands
|
2007-11-10 10:48:56 +03:00
|
|
|
end
|
2009-06-10 01:38:59 +04:00
|
|
|
|