# File lib/puppet/type/tidy.rb, line 91
91:         def tidy?(path, stat)
92:             # If the file's older than we allow, we should get rid of it.
93:             if (Time.now.to_i - stat.send(resource[:type]).to_i) > value
94:                 return true
95:             else
96:                 return false
97:             end
98:         end