summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/capitalize.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/parser/functions/capitalize.rb')
-rw-r--r--lib/puppet/parser/functions/capitalize.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/puppet/parser/functions/capitalize.rb b/lib/puppet/parser/functions/capitalize.rb
deleted file mode 100644
index 98b2d16c..00000000
--- a/lib/puppet/parser/functions/capitalize.rb
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-# capitalize.rb
-#
-
-module Puppet::Parser::Functions
- newfunction(:capitalize, :type => :rvalue, :doc => <<-EOS
- Capitalizes the first letter of a string or array of strings.
- Requires either a single string or an array as an input.
- EOS
- ) do |arguments|
-
- raise(Puppet::ParseError, "capitalize(): Wrong number of arguments " +
- "given (#{arguments.size} for 1)") if arguments.size < 1
-
- value = arguments[0]
-
- unless value.is_a?(Array) || value.is_a?(String)
- raise(Puppet::ParseError, 'capitalize(): Requires either ' +
- 'array or string to work with')
- end
-
- if value.is_a?(Array)
- # Numbers in Puppet are often string-encoded which is troublesome ...
- result = value.collect { |i| i.is_a?(String) ? i.capitalize : i }
- else
- result = value.capitalize
- end
-
- return result
- end
-end
-
-# vim: set ts=2 sw=2 et :