class Glima::Command::Profile
Public Class Methods
new()
click to toggle source
# File lib/glima/command/profile.rb, line 5 def initialize response = client.get_user_profile('me') puts "emailAddress: #{response.email_address}" puts "messagesTotal: #{response.messages_total}" puts "threadsTotal: #{response.threads_total}" puts "historyId: #{response.history_id}" end