Commit 12919c7b authored by Eloy Duran's avatar Eloy Duran

Sort authors list used in documentation.

This also fixes a failure on Travis.
parent bde374a3
......@@ -25,7 +25,7 @@ module Pod
def company
if @specification.authors
@specification.authors.keys.join(', ')
@specification.authors.keys.sort.join(', ')
else
'no-company'
end
......
......@@ -29,8 +29,8 @@ describe Pod::Generator::Documentation do
@doc_installer.generate_appledoc_options.should == [
'--project-name', 'BananaLib (1.0)',
'--docset-desc', 'Full of chunky bananas.',
'--project-company', 'Monkey Boy, Banana Corp',
'--docset-copyright', 'Monkey Boy, Banana Corp',
'--project-company', 'Banana Corp, Monkey Boy',
'--docset-copyright', 'Banana Corp, Monkey Boy',
'--company-id', 'org.cocoapods',
'--ignore', '.m',
'--keep-undocumented-objects',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment