Add number of stub code for future functions.

Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
This commit is contained in:
Krzysztof Wilczynski 2011-04-30 14:36:25 +01:00
parent d38e399b47
commit 781a872057
4 changed files with 48 additions and 0 deletions

12
load_json.rb Normal file
View file

@ -0,0 +1,12 @@
#
# load_json.rb
#
module Puppet::Parser::Functions
newfunction(:load_json, :type => :rvalue, :doc => <<-EOS
EOS
) do |arguments|
end
end
# vim: set ts=2 sw=2 et :

12
load_yaml.rb Normal file
View file

@ -0,0 +1,12 @@
#
# load_yaml.rb
#
module Puppet::Parser::Functions
newfunction(:load_yaml, :type => :rvalue, :doc => <<-EOS
EOS
) do |arguments|
end
end
# vim: set ts=2 sw=2 et :

12
rand.rb Normal file
View file

@ -0,0 +1,12 @@
#
# rand.rb
#
module Puppet::Parser::Functions
newfunction(:rand, :type => :rvalue, :doc => <<-EOS
EOS
) do |arguments|
end
end
# vim: set ts=2 sw=2 et :

12
squeeze.rb Normal file
View file

@ -0,0 +1,12 @@
#
# squeeze.rb
#
module Puppet::Parser::Functions
newfunction(:squeeze, :type => :rvalue, :doc => <<-EOS
EOS
) do |arguments|
end
end
# vim: set ts=2 sw=2 et :