summaryrefslogtreecommitdiffstats
path: root/lib/puppet/application/help.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/application/help.rb')
-rw-r--r--lib/puppet/application/help.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/puppet/application/help.rb b/lib/puppet/application/help.rb
new file mode 100644
index 000000000..fd8818db0
--- /dev/null
+++ b/lib/puppet/application/help.rb
@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+require 'puppet/application/faces_base'
+
+class Puppet::Application::Help < Puppet::Application::FacesBase
+ # Meh. Disable the default behaviour, which is to inspect the
+ # string and return that – not so helpful. --daniel 2011-04-11
+ def render(result) result end
+end