method
spec_authors
ruby latest stable - Class:
Gem::Commands::QueryCommand
spec_authors(entry, spec)private
No documentation available.
# File lib/rubygems/commands/query_command.rb, line 294
def spec_authors entry, spec
authors = "Author#{spec.authors.length > 1 ? 's' : ''}: ".dup
authors << spec.authors.join(', ')
entry << format_text(authors, 68, 4)
end