Last active
December 2, 2015 19:55
-
-
Save tubbo/fd90aa08329808aec64e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Login < ActiveRecord::Base | |
| def self.average_seconds_to_login | |
| average :time | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class LoginsDecorator < Draper::CollectionDecorator | |
| delegate :average_seconds_to_login | |
| def seconds | |
| "#{average_seconds_to_login}s" if average_seconds_to_login.present? | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment