module-nginx/lib/puppet/parser/functions
2011-05-24 21:20:48 -05:00
..
README.markdown 20110524 Work Snapshot 2011-05-24 21:20:48 -05:00

Functions

Define functions in this directory.

File paths should match the function name; for example, a function myfunction, defined like this:

Puppet::Parser::Functions::newfunction(
    :myfunction,
    :type => :statement,
    :doc => "Documentation here."
) do |vals|
    # ...
end

Should be found in myfunction.rb in this directory.