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