class Github::Search

def email(*args)


github.search.email email: 'wycats'
github = Github.new
= Examples

:keyword - search term
= Parameters

guarantee that full email searches will always be available.
This API call is added for compatibility reasons only. There’s no

Search email
def email(*args)
  arguments(args) do
    assert_required %w[ email ]
  end
  params = arguments.params
  get_request("/legacy/user/email/#{params.delete('email')}", params)
end