Module: Yapper::Timestamps

Extended by:
MotionSupport::Concern
Defined in:
lib/yapper/timestamps.rb

Instance Method Summary collapse

Instance Method Details

#set_timestampsObject



13
14
15
16
17
# File 'lib/yapper/timestamps.rb', line 13

def set_timestamps
  now = Time.now
  self.created_at = now if created_at.nil?
  self.updated_at = now
end