get_all_gem_names()
Get all gem names from the command line.
# File lib/rubygems/command.rb, line 184 def get_all_gem_names args = options[:args] if args.nil? or args.empty? raise Gem::CommandLineError, "Please specify at least one gem name (e.g. gem build GEMNAME)" end args.select { |arg| arg !~ /^-/ } end