Current Path : /opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/parser/functions/ |
Current File : //opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/parser/functions/fail.rb |
Puppet::Parser::Functions::newfunction( :fail, :arity => -1, :doc => <<DOC Fail with a parse error. Any parameters will be stringified, concatenated, and passed to the exception-handler. DOC ) do |vals| vals = vals.collect { |s| s.to_s }.join(" ") if vals.is_a? Array raise Puppet::ParseError, vals.to_s end