我正在尝试使用 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_url
等(根据 API)?
事实证明,这
毕竟是显而易见的:
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