6 lines
130 B
Ruby
6 lines
130 B
Ruby
|
|
module Puppet::Parser::Functions
|
|
newfunction(:dirname, :type => :rvalue) do |args|
|
|
File.dirname(args[0])
|
|
end
|
|
end
|