Class: Gem::Command
- Inherits:
-
Object
- Object
- Gem::Command
- Includes:
- UserInteraction
- Defined in:
- lib/rubygems/command.rb
Overview
Base class for all Gem commands. When creating a new gem command, define #initialize, #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
Direct Known Subclasses
Gem::Commands::BuildCommand, Gem::Commands::CertCommand, Gem::Commands::CheckCommand, Gem::Commands::CleanupCommand, Gem::Commands::ContentsCommand, Gem::Commands::DependencyCommand, Gem::Commands::EnvironmentCommand, Gem::Commands::FetchCommand, Gem::Commands::GenerateIndexCommand, Gem::Commands::HelpCommand, Gem::Commands::InstallCommand, Gem::Commands::LockCommand, Gem::Commands::MirrorCommand, Gem::Commands::OpenCommand, Gem::Commands::OutdatedCommand, Gem::Commands::OwnerCommand, Gem::Commands::PristineCommand, Gem::Commands::PushCommand, Gem::Commands::QueryCommand, Gem::Commands::RdocCommand, Gem::Commands::ServerCommand, Gem::Commands::SetupCommand, Gem::Commands::SourcesCommand, Gem::Commands::SpecificationCommand, Gem::Commands::StaleCommand, Gem::Commands::UninstallCommand, Gem::Commands::UnpackCommand, Gem::Commands::UpdateCommand, Gem::Commands::WhichCommand, Gem::Commands::YankCommand
Instance Attribute Summary collapse
-
#command ⇒ Object
readonly
The name of the command.
-
#defaults ⇒ Object
The default options for the command.
-
#options ⇒ Object
readonly
The options for the command.
-
#program_name ⇒ Object
The name of the command for command-line invocation.
-
#summary ⇒ Object
A short description of the command.
Class Method Summary collapse
- .add_common_option(*args, &handler) ⇒ Object
-
.add_specific_extra_args(cmd, args) ⇒ Object
Add a list of extra arguments for the given command.
-
.build_args ⇒ Object
Arguments used when building gems.
- .build_args=(value) ⇒ Object
- .common_options ⇒ Object
- .extra_args ⇒ Object
- .extra_args=(value) ⇒ Object
-
.specific_extra_args(cmd) ⇒ Object
Return an array of extra arguments for the command.
-
.specific_extra_args_hash ⇒ Object
Accessor for the specific extra args hash (self initializing).
Instance Method Summary collapse
-
#add_extra_args(args) ⇒ Object
Adds extra args from ~/.gemrc.
-
#add_option(*opts, &handler) ⇒ Object
Add a command-line option and handler to the command.
-
#arguments ⇒ Object
Override to provide details of the arguments a command takes.
-
#begins?(long, short) ⇒ Boolean
True if
longbegins with the characters fromshort. -
#defaults_str ⇒ Object
Override to display the default values of the command options.
-
#description ⇒ Object
Override to display a longer description of what this command does.
-
#execute ⇒ Object
Override to provide command handling.
-
#get_all_gem_names ⇒ Object
Get all gem names from the command line.
-
#get_all_gem_names_and_versions ⇒ Object
Get all [gem, version] from the command line.
-
#get_one_gem_name ⇒ Object
Get a single gem name from the command line.
-
#get_one_optional_argument ⇒ Object
Get a single optional argument from the command line.
-
#handle_options(args) ⇒ Object
Handle the given list of arguments by parsing them and recording the results.
-
#handles?(args) ⇒ Boolean
True if the command handles the given argument list.
-
#initialize(command, summary = nil, defaults = {}) ⇒ Command
constructor
Initializes a generic gem command named
command. -
#invoke(*args) ⇒ Object
Invoke the command with the given list of arguments.
-
#invoke_with_build_args(args, build_args) ⇒ Object
Invoke the command with the given list of normal arguments and additional build arguments.
-
#merge_options(new_options) ⇒ Object
Merge a set of command options with the set of default options (without modifying the default option hash).
-
#remove_option(name) ⇒ Object
Remove previously defined command-line argument
name. -
#show_help ⇒ Object
Display the help message for the command.
-
#show_lookup_failure(gem_name, version, errors, domain) ⇒ Object
Display to the user that a gem couldn’t be found and reasons why – TODO: replace
domainwith a parameter to suppress suggestions. -
#usage ⇒ Object
Override to display the usage for an individual gem command.
-
#when_invoked(&block) ⇒ Object
Call the given block 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
Constructor Details
#initialize(command, summary = nil, defaults = {}) ⇒ Command
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].
117 118 119 120 121 122 123 124 125 126 |
# File 'lib/rubygems/command.rb', line 117 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 |
Instance Attribute Details
#command ⇒ Object (readonly)
The name of the command.
25 26 27 |
# File 'lib/rubygems/command.rb', line 25 def command @command end |
#defaults ⇒ Object
The default options for the command.
35 36 37 |
# File 'lib/rubygems/command.rb', line 35 def defaults @defaults end |
#options ⇒ Object (readonly)
The options for the command.
30 31 32 |
# File 'lib/rubygems/command.rb', line 30 def @options end |
#program_name ⇒ Object
The name of the command for command-line invocation.
40 41 42 |
# File 'lib/rubygems/command.rb', line 40 def program_name @program_name end |
#summary ⇒ Object
A short description of the command.
45 46 47 |
# File 'lib/rubygems/command.rb', line 45 def summary @summary end |
Class Method Details
.add_common_option(*args, &handler) ⇒ Object
62 63 64 |
# File 'lib/rubygems/command.rb', line 62 def self.add_common_option(*args, &handler) Gem::Command. << [args, handler] end |
.add_specific_extra_args(cmd, args) ⇒ Object
Add a list of extra arguments for the given command. args may be an array or a string to be split on white space.
91 92 93 94 |
# File 'lib/rubygems/command.rb', line 91 def self.add_specific_extra_args(cmd,args) args = args.split(/\s+/) if args.kind_of? String specific_extra_args_hash[cmd] = args end |
.build_args ⇒ Object
Arguments used when building gems
50 51 52 |
# File 'lib/rubygems/command.rb', line 50 def self.build_args @build_args ||= [] end |
.build_args=(value) ⇒ Object
54 55 56 |
# File 'lib/rubygems/command.rb', line 54 def self.build_args=(value) @build_args = value end |
.common_options ⇒ Object
58 59 60 |
# File 'lib/rubygems/command.rb', line 58 def self. @common_options ||= [] end |
.extra_args ⇒ Object
66 67 68 |
# File 'lib/rubygems/command.rb', line 66 def self.extra_args @extra_args ||= [] end |
.extra_args=(value) ⇒ Object
70 71 72 73 74 75 76 77 |
# File 'lib/rubygems/command.rb', line 70 def self.extra_args=(value) case value when Array @extra_args = value when String @extra_args = value.split end end |
.specific_extra_args(cmd) ⇒ Object
Return an array of extra arguments for the command. The extra arguments come from the gem configuration file read at program startup.
83 84 85 |
# File 'lib/rubygems/command.rb', line 83 def self.specific_extra_args(cmd) specific_extra_args_hash[cmd] end |
.specific_extra_args_hash ⇒ Object
Accessor for the specific extra args hash (self initializing).
99 100 101 102 103 |
# File 'lib/rubygems/command.rb', line 99 def self.specific_extra_args_hash @specific_extra_args_hash ||= Hash.new do |h,k| h[k] = Array.new end end |
Instance Method Details
#add_extra_args(args) ⇒ Object
Adds extra args from ~/.gemrc
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 |
# File 'lib/rubygems/command.rb', line 384 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_option(*opts, &handler) ⇒ Object
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.
334 335 336 337 338 |
# File 'lib/rubygems/command.rb', line 334 def add_option(*opts, &handler) # :yields: value, options group_name = Symbol === opts.first ? opts.shift : :options @option_groups[group_name] << [opts, handler] end |
#arguments ⇒ Object
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
244 245 246 |
# File 'lib/rubygems/command.rb', line 244 def arguments "" end |
#begins?(long, short) ⇒ Boolean
True if long begins with the characters from short.
131 132 133 134 |
# File 'lib/rubygems/command.rb', line 131 def begins?(long, short) return false if short.nil? long[0, short.length] == short end |
#defaults_str ⇒ Object
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
258 259 260 |
# File 'lib/rubygems/command.rb', line 258 def defaults_str "" end |
#description ⇒ Object
Override to display a longer description of what this command does.
265 266 267 |
# File 'lib/rubygems/command.rb', line 265 def description nil end |
#execute ⇒ Object
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
145 146 147 |
# File 'lib/rubygems/command.rb', line 145 def execute raise Gem::Exception, "generic command has no actions" end |
#get_all_gem_names ⇒ Object
Get all gem names from the command line.
175 176 177 178 179 180 181 182 183 184 |
# File 'lib/rubygems/command.rb', line 175 def get_all_gem_names args = [:args] if args.nil? or args.empty? then raise Gem::CommandLineError, "Please specify at least one gem name (e.g. gem build GEMNAME)" end args.select { |arg| arg !~ /^-/ } end |
#get_all_gem_names_and_versions ⇒ Object
Get all [gem, version] from the command line.
An argument in the form gem:ver is pull apart into the gen name and version, respectively.
191 192 193 194 195 196 197 198 199 |
# File 'lib/rubygems/command.rb', line 191 def get_all_gem_names_and_versions get_all_gem_names.map do |name| if /\A(.*):(#{Gem::Requirement::PATTERN_RAW})\z/ =~ name [$1, $2] else [name] end end end |
#get_one_gem_name ⇒ Object
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.
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
# File 'lib/rubygems/command.rb', line 205 def get_one_gem_name args = [: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_one_optional_argument ⇒ Object
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.
225 226 227 228 |
# File 'lib/rubygems/command.rb', line 225 def get_one_optional_argument args = [:args] || [] args.first end |
#handle_options(args) ⇒ Object
Handle the given list of arguments by parsing them and recording the results.
374 375 376 377 378 379 |
# File 'lib/rubygems/command.rb', line 374 def (args) args = add_extra_args(args) @options = Marshal.load Marshal.dump @defaults # deep copy parser.parse!(args) @options[:args] = args end |
#handles?(args) ⇒ Boolean
True if the command handles the given argument list.
361 362 363 364 365 366 367 368 |
# File 'lib/rubygems/command.rb', line 361 def handles?(args) begin parser.parse!(args.dup) return true rescue return false end end |
#invoke(*args) ⇒ Object
Invoke the command with the given list of arguments.
289 290 291 |
# File 'lib/rubygems/command.rb', line 289 def invoke(*args) invoke_with_build_args args, nil end |
#invoke_with_build_args(args, build_args) ⇒ Object
Invoke the command with the given list of normal arguments and additional build arguments.
297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'lib/rubygems/command.rb', line 297 def invoke_with_build_args(args, build_args) args [:build_args] = build_args if [:help] then show_help elsif @when_invoked then @when_invoked.call else execute end end |
#merge_options(new_options) ⇒ Object
Merge a set of command options with the set of default options (without modifying the default option hash).
353 354 355 356 |
# File 'lib/rubygems/command.rb', line 353 def () @options = @defaults.clone .each do |k,v| @options[k] = v end end |
#remove_option(name) ⇒ Object
Remove previously defined command-line argument name.
343 344 345 346 347 |
# File 'lib/rubygems/command.rb', line 343 def remove_option(name) @option_groups.each do |_, option_list| option_list.reject! { |args, _| args.any? { |x| x =~ /^#{name}/ } } end end |
#show_help ⇒ Object
Display the help message for the command.
281 282 283 284 |
# File 'lib/rubygems/command.rb', line 281 def show_help parser.program_name = usage say parser end |
#show_lookup_failure(gem_name, version, errors, domain) ⇒ Object
Display to the user that a gem couldn’t be found and reasons why – TODO: replace domain with a parameter to suppress suggestions
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
# File 'lib/rubygems/command.rb', line 154 def show_lookup_failure(gem_name, version, errors, domain) if errors and !errors.empty? msg = "Could not find a valid gem '#{gem_name}' (#{version}), here is why:\n" errors.each { |x| msg << " #{x.wordy}\n" } alert_error msg 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 |
#usage ⇒ Object
Override to display the usage for an individual gem command.
The text “[options]” is automatically appended to the usage text.
274 275 276 |
# File 'lib/rubygems/command.rb', line 274 def usage program_name end |
#when_invoked(&block) ⇒ Object
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.
319 320 321 |
# File 'lib/rubygems/command.rb', line 319 def when_invoked(&block) @when_invoked = block end |