module Github::Users::Emails
def emails(params={})
@github.users.emails { |email| ... }
@github.users.emails
@github = Github.new :oauth_token => '...'
= Examples
List email addresses for the authenticated user
def emails(params={}) _normalize_params_keys(params) response = get("/user/emails", params) return response unless block_given? response.each { |el| yield el } end