Guest User

Untitled

a guest
May 27th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #this is a better way
  2.  
  3. class Contact < ActiveRecord::Base
  4.  
  5. def updated_today?
  6. if self.updated_at.beginning_of_day == Time.now.beginning_of_day
  7. true
  8. else
  9. false
  10. end
  11. end
  12.  
  13. end
Add Comment
Please, Sign In to add comment