summaryrefslogtreecommitdiff
path: root/lib/github/representation/user.rb
blob: 7975855531901f4ab5f50dc7b4c6e64ace779c0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Github
  module Representation
    class User < Representation::Base
      def id
        raw['id']
      end

      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