class GHArchive::User

Public Instance Methods

avatar_url() click to toggle source
# File lib/gh-archive/entities.rb, line 59
def avatar_url
    @payload['avatar_url']
end
gravatar_id() click to toggle source
# File lib/gh-archive/entities.rb, line 55
def gravatar_id
    @payload['gravatar_id']
end
id() click to toggle source
# File lib/gh-archive/entities.rb, line 39
def id
    @payload['id']
end
login() click to toggle source
# File lib/gh-archive/entities.rb, line 51
def login
    @payload['login']
end
site_admin() click to toggle source
# File lib/gh-archive/entities.rb, line 63
def site_admin
    @payload['site_admin']
end
type() click to toggle source
# File lib/gh-archive/entities.rb, line 47
def type
    @payload['type']
end
url() click to toggle source
# File lib/gh-archive/entities.rb, line 43
def url
    @payload['url']
end