I am trying to list the details of the Github account repositories using Octokit.rb but cannot find the corresponding URLs.
In the first case, all I need to do is authenticate using the Github API using OAuth and output the information to the console. Here is an example:
client = Octokit::Client.new :access_token => 'my_token' client.repos.each do |repo| puts repo.name puts repo.description
I'm sure I missed something obvious, but what you need to do to find html_url , clone_url , etc. (according to API ) for each repository?
source share