Last active
August 29, 2015 14:11
-
-
Save jmmastey/e6785a45ece32095a25d 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
def show_account_label | |
puts "#{client_count}, #{last_connection_time}" | |
end | |
def clients | |
@account.client_list | |
end | |
def client_count | |
"#{clients.length} #{"client".pluralize}" | |
end | |
def last_connection_time | |
connection_time = clients.last.connected_at.strftime("%H:%M:%S") | |
"last connection: #{connection_time}" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment