From 2389bdf85bf0ae26110666ff34680d057acc32ff Mon Sep 17 00:00:00 2001 From: Daniel Pittman Date: Wed, 1 Jun 2011 14:17:11 -0700 Subject: (#7683) Add a 'man' face and subcommand to Puppet. This is the minimal wrapper, cloning a good deal of the logic from help, that runs our face through the 'man' template and returns ronn-formatted Markdown. This provides the crudest baseline possible for getting man-style output, but lets us move forward to improve behaviour. Reviewed-By: Nick Fagerlund --- lib/puppet/application/man.rb | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 lib/puppet/application/man.rb (limited to 'lib/puppet/application') diff --git a/lib/puppet/application/man.rb b/lib/puppet/application/man.rb new file mode 100644 index 000000000..1ecc4d691 --- /dev/null +++ b/lib/puppet/application/man.rb @@ -0,0 +1,4 @@ +require 'puppet/application/face_base' + +class Puppet::Application::Man < Puppet::Application::FaceBase +end -- cgit