puppetlabs-stdlib/lib/puppet/parser/functions/date.rb

21 lines
342 B
Ruby
Raw Normal View History

#
# date.rb
#
module Puppet::Parser::Functions
newfunction(:date, :type => :rvalue, :doc => <<-EOS
EOS
) do |arguments|
if (arguments.size != 1) then
2011-06-30 01:00:32 +02:00
raise(Puppet::ParseError, "date(): Wrong number of arguments "+
"given #{arguments.size} for 1")
end
2011-06-30 00:37:37 +02:00
# TODO: stubbed
end
end
# vim: set ts=2 sw=2 et :