Module: BWAPI::Client::Me
- Included in:
- BWAPI::Client
- Defined in:
- lib/bwapi/client/me.rb
Instance Method Summary collapse
-
#client_id ⇒ String
Get users client id.
-
#client_name ⇒ String
Get users client name.
-
#me ⇒ Hashie::Mash
Get user information.
-
#user_id ⇒ String
Get users id.
Instance Method Details
#client_id ⇒ String
Get users client id
22 23 24 |
# File 'lib/bwapi/client/me.rb', line 22 def client_id me.client.id end |
#client_name ⇒ String
Get users client name
15 16 17 |
# File 'lib/bwapi/client/me.rb', line 15 def client_name me.client.name end |
#me ⇒ Hashie::Mash
Get user information
8 9 10 |
# File 'lib/bwapi/client/me.rb', line 8 def me get 'me' end |
#user_id ⇒ String
Get users id
36 37 38 |
# File 'lib/bwapi/client/me.rb', line 36 def user_id me.id end |