Method: Puppet::Node::Facts#stringify

Defined in:
lib/vendor/puppet/node/facts.rb

#stringifyObject

Convert all fact values into strings.



51
52
53
54
55
# File 'lib/vendor/puppet/node/facts.rb', line 51

def stringify
  values.each do |fact, value|
    values[fact] = value.to_s
  end
end