summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--load_json.rb12
-rw-r--r--load_yaml.rb12
-rw-r--r--rand.rb12
-rw-r--r--squeeze.rb12
4 files changed, 48 insertions, 0 deletions
diff --git a/load_json.rb b/load_json.rb
new file mode 100644
index 0000000..9ec8c78
--- /dev/null
+++ b/load_json.rb
@@ -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 :
diff --git a/load_yaml.rb b/load_yaml.rb
new file mode 100644
index 0000000..684a721
--- /dev/null
+++ b/load_yaml.rb
@@ -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 :
diff --git a/rand.rb b/rand.rb
new file mode 100644
index 0000000..2cb9acb
--- /dev/null
+++ b/rand.rb
@@ -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 :
diff --git a/squeeze.rb b/squeeze.rb
new file mode 100644
index 0000000..a135bd3
--- /dev/null
+++ b/squeeze.rb
@@ -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 :