Class: Quandl::Client::User

Inherits:
Object
  • Object
show all
Defined in:
lib/quandl/command/client_ext/user.rb

Overview

< Quandl::Client::Base

Instance Method Summary collapse

Instance Method Details

#infoObject



3
4
5
6
7
8
9
# File 'lib/quandl/command/client_ext/user.rb', line 3

def info
  return "username:   You are not authenticated!" unless present?
  [
    "username:   #{username}",
    "email:      #{email}",
   ].join("\n")
end