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