13 lines
176 B
Ruby
13 lines
176 B
Ruby
|
#
|
||
|
# 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 :
|