summaryrefslogtreecommitdiff
path: root/files/functions/gsub.rb
blob: 743a7002cd5404e1e5e9d0406e4dd934e43d76c9 (plain)
1
2
3
4
5
6
7
# generic gsub call
module Puppet::Parser::Functions
	newfunction(:gsub, :type => :rvalue) do |args|
		args[0].gsub(/#{args[1]}/, args[2])
	end
end