This class holds some data, along with the timestamp at which is was last seen to change
e.g. Element.new(3) Element.new(3, Time.now.to_i)
# File ../../auditor/lib/kasp_auditor/changed_config.rb, line 46 def initialize(*args) @timestamp = 0 if (args.length >= 1) @value = args[0] if (args.length == 2) @timestamp = args[1] end end end
Generated with the Darkfish Rdoc Generator 2.