6

我正在尝试使用Octokit.rb列出 Github 帐户存储库的详细信息,但似乎找不到相关的 URL。

首先,我需要做的就是使用 OAuth 通过 Github API 进行身份验证,并将详细信息输出到控制台。到目前为止,这是一个基本示例:

client = Octokit::Client.new :access_token => 'my_token'

client.repos.each do |repo|
    puts repo.name
    puts repo.description
    # html_url & clone_url go here.
end

我确定我忽略了一些明显的东西,但是你需要做什么来为每个存储库找到html_url, clone_urletc (根据API)?

4

1 回答 1

8

事实证明这是显而易见的:

client = Octokit::Client.new :access_token => 'my_token'

client.repos.each do |repo|
    puts repo.name
    puts repo.description

    # find the urls
    puts repo.rels[:html].href
    puts repo.rels[:git].href
    puts repo.rels[:clone].href
    puts repo.rels[:ssh].href
end
于 2013-11-02T16:15:26.503 回答