Add -q option to suppress warnings for server

This commit is contained in:
Peter Souter 2014-09-23 00:54:28 +01:00
parent 6fb4a39536
commit 5304b4f2c1
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ Puppet::Face.define(:strings, '0.0.1') do
# The `-m` flag means a list of name/path pairs will follow. The name is
# used as the module name and the path indicates which `.yardoc` index to
# generate documentation from.
yard_args = %w[-m] + module_tuples.flatten
yard_args = %w[-m -q] + module_tuples.flatten
merge_puppet_args!(yard_args)
YARD::CLI::Server.run(*yard_args)