Dru
Dru

Reputation: 9820

Rails Record | Time since creation

How can I find out how many hours have passed been since a record was created? I'm attempting to sort with an algorithm and I need this amount as a variable. Thanks

Schema https://gist.github.com/1324803

Upvotes: 2

Views: 561

Answers (1)

Wizard of Ogz
Wizard of Ogz

Reputation: 12643

hours_since_creation = (Time.zone.now - @record.created_at) / 3600

Upvotes: 4

Related Questions