summaryrefslogtreecommitdiffstats
path: root/lib/puppet/parser/yaml_trimmer.rb
blob: cf787091631206512008144d8c8ea83597aba658 (plain)
1
2
3
4
5
6
7
8
9
module Puppet::Parser::YamlTrimmer
  REMOVE = %w{@scope @source}

  def to_yaml_properties
    r = instance_variables - REMOVE
    r -= skip_for_yaml if respond_to?(:skip_for_yaml)
    r
  end
end