私はこのコードを持っています:
require 'octokit'
require 'csv'
client = Octokit::Client.new :login => 'github_username', :password => 'github_password'
repo = 'rubinius/rubinius'
numbers = CSV.read('/Users/Name/Downloads/numbers.csv').flatten
# at this point, essentially numbers = [642, 630, 623, 643, 626]
CSV.open('results.csv', 'w') do |csv|
for number in numbers
begin
pull = client.pull_request(repo, number)
csv << [pull.number, pull.additions, pull.deletions]
rescue
next
end
end
end
ただし、client.pull_request が 404 に遭遇し、ジャンプして次のリクエストに進む場合があります。ただし、numbers
配列内の数値を出力し、空白またはゼロを入れてpull.additions
、pull.deletions
配列内の次の項目に移動する必要があるため、次のようなものが生成されます。
pull.number pull.additions pull.deletions
642, 12, 3
630, ,
623, 15, 23
...
これはどのように行うことができますか?