summaryrefslogtreecommitdiffstats
path: root/lib/puppet/interface/documentation.rb
diff options
context:
space:
mode:
authorDominic Maraglia <dmaraglia@gmail.com>2011-05-03 17:59:26 -0700
committerDominic Maraglia <dmaraglia@gmail.com>2011-05-03 17:59:26 -0700
commite5b62d7424da24799c4d16f0e104fac3008e2b89 (patch)
tree7d2d710fa43c39dd35d96cc2db371c548a85518f /lib/puppet/interface/documentation.rb
parent94f0b0996ba628f4916bcf0978b29c584c15818b (diff)
parentd203853bc8b40732c2ba88a4e5396f00a1e3a4ec (diff)
downloadpuppet-e5b62d7424da24799c4d16f0e104fac3008e2b89.tar.gz
puppet-e5b62d7424da24799c4d16f0e104fac3008e2b89.tar.xz
puppet-e5b62d7424da24799c4d16f0e104fac3008e2b89.zip
Merge branch '2.7.x' of github.com:puppetlabs/puppet into 2.7.x
Diffstat (limited to 'lib/puppet/interface/documentation.rb')
-rw-r--r--lib/puppet/interface/documentation.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/puppet/interface/documentation.rb b/lib/puppet/interface/documentation.rb
index 91db0e074..48e9a8b1a 100644
--- a/lib/puppet/interface/documentation.rb
+++ b/lib/puppet/interface/documentation.rb
@@ -6,7 +6,10 @@ class Puppet::Interface
# We need to identify an indent: the minimum number of whitespace
# characters at the start of any line in the text.
- indent = text.each_line.map {|x| x.index(/[^\s]/) }.compact.min
+ #
+ # Using split rather than each_line is because the later only takes a
+ # block on Ruby 1.8.5 / Centos, and we support that. --daniel 2011-05-03
+ indent = text.split(/\n/).map {|x| x.index(/[^\s]/) }.compact.min
if indent > 0 then
text.gsub!(/^[ \t\f]{0,#{indent}}/, '')