Module: Yapper::Timestamps
- Extended by:
- MotionSupport::Concern
- Defined in:
- lib/yapper/timestamps.rb
Instance Method Summary collapse
Instance Method Details
#set_timestamps ⇒ Object
13 14 15 16 17 |
# File 'lib/yapper/timestamps.rb', line 13 def now = Time.now self.created_at = now if created_at.nil? self.updated_at = now end |