Invoke the command with the given list of normal arguments and additional build arguments.
# File lib/rubygems/command.rb, line 298
def invoke_with_build_args(args, build_args)
handle_options args
options[:build_args] = build_args
self.ui = Gem::SilentUI.new if options[:silent]
if options[:help] then
show_help
elsif @when_invoked then
@when_invoked.call options
else
execute
end
end