summaryrefslogtreecommitdiff
path: root/lib/github/representation/user.rb
blob: 18591380e2503ccd540e640a901e4cef2b10d393 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Github
  module Representation
    class User < Representation::Base
      def email
        return @email if defined?(@email)

        @email = Github::User.new(username, options).get.fetch('email', nil)
      end

      def username
        raw['login']
      end
    end
  end
end