Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / validate_ip_address.rb
index af835ad..3fd582b 100644 (file)
@@ -3,22 +3,30 @@
 #
 module Puppet::Parser::Functions
   newfunction(:validate_ip_address, :doc => <<-DOC
-    Validate that all values passed are valid IP addresses,
-    regardless they are IPv4 or IPv6
-    Fail compilation if any value fails this check.
-    The following values will pass:
-    $my_ip = "1.2.3.4"
-    validate_ip_address($my_ip)
-    validate_ip_address("8.8.8.8", "172.16.0.1", $my_ip)
-
-    $my_ip = "3ffe:505:2"
-    validate_ip_address(1)
-    validate_ip_address($my_ip)
-    validate_ip_address("fe80::baf6:b1ff:fe19:7507", $my_ip)
-
-    The following values will fail, causing compilation to abort:
-    $some_array = [ 1, true, false, "garbage string", "3ffe:505:2" ]
-    validate_ip_address($some_array)
+    @summary
+      Validate that all values passed are valid IP addresses,
+      regardless they are IPv4 or IPv6
+      Fail compilation if any value fails this check.
+
+    @return
+      passes when the given values are valid IP addresses or raise an error when they are not and fails compilation
+
+    @example **Usage**
+      The following values will pass:
+
+        $my_ip = "1.2.3.4"
+        validate_ip_address($my_ip)
+        validate_ip_address("8.8.8.8", "172.16.0.1", $my_ip)
+
+        $my_ip = "3ffe:505:2"
+        validate_ip_address(1)
+        validate_ip_address($my_ip)
+        validate_ip_address("fe80::baf6:b1ff:fe19:7507", $my_ip)
+
+      The following values will fail, causing compilation to abort:
+
+        $some_array = [ 1, true, false, "garbage string", "3ffe:505:2" ]
+        validate_ip_address($some_array)
     DOC
              ) do |args|