Skip to content

Instantly share code, notes, and snippets.

@jmmastey
Last active August 29, 2015 14:11
Show Gist options
  • Save jmmastey/e6785a45ece32095a25d to your computer and use it in GitHub Desktop.
Save jmmastey/e6785a45ece32095a25d to your computer and use it in GitHub Desktop.
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