From: Jeff McCune Date: Fri, 9 Mar 2012 22:08:54 +0000 (-0800) Subject: (maint) Comment Ken's fix to String#any? X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=f156e554d43f7d5517d2fd79bab41f7d9ee73688;p=puppet-stdlib.git (maint) Comment Ken's fix to String#any? Just added a comment about why we're doing what we're doing. --- diff --git a/lib/puppet/parser/functions/validate_re.rb b/lib/puppet/parser/functions/validate_re.rb index b5e8ff4..ca25a70 100644 --- a/lib/puppet/parser/functions/validate_re.rb +++ b/lib/puppet/parser/functions/validate_re.rb @@ -30,6 +30,8 @@ module Puppet::Parser::Functions msg = args[2] || "validate_re(): #{args[0].inspect} does not match #{args[1].inspect}" + # We're using a flattened array here because we can't call String#any? in + # Ruby 1.9 like we can in Ruby 1.8 raise Puppet::ParseError, (msg) unless [args[1]].flatten.any? do |re_str| args[0] =~ Regexp.compile(re_str) end