[Pkg-puppet-devel] [SCM] Puppet packaging for Debian branch, master, updated. debian/0.24.6-1-356-g5718585

James Turnbull james at lovedthanlost.net
Fri Jan 23 14:21:33 UTC 2009


The following commit has been merged in the master branch:
commit c906afd9e36017bba339ca50998e1651e54dbd0c
Author: Luke Kanies <luke at madstop.com>
Date:   Tue Oct 28 17:13:31 2008 -0500

    Fixing #1667 - regex automatic value documentation is now readable.
    
    Signed-off-by: Luke Kanies <luke at madstop.com>

diff --git a/CHANGELOG b/CHANGELOG
index 0dcfcbd..1b828d1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,7 @@
 0.24.x
-    Fixed 1692 - k5login fails to set mode when file is created
+    Fixed #1667 - Documentation should specify natural language regexs, not Regexp objects
+
+    Fixed #1692 - k5login fails to set mode when file is created
 
     Fixed #1660 - Added specific recurse values for tidy
 
diff --git a/lib/puppet/parameter.rb b/lib/puppet/parameter.rb
index f90193f..06dfe5b 100644
--- a/lib/puppet/parameter.rb
+++ b/lib/puppet/parameter.rb
@@ -63,7 +63,7 @@ class Puppet::Parameter
                     end
                     unless regs.empty?
                         @doc += "  Values can also match ``" +
-                            regs.join("``, ``") + "``."
+                            regs.collect { |r| r.inspect }.join("``, ``") + "``."
                     end
                 end
 

-- 
Puppet packaging for Debian



More information about the Pkg-puppet-devel mailing list