class Pronto::Formatter::CommitFormatter

def submit_comments(client, comments)

def submit_comments(client, comments)
  comments.each { |comment| client.create_commit_comment(comment) }
rescue Octokit::UnprocessableEntity, HTTParty::Error => e
  $stderr.puts "Failed to post: #{e.message}"
  $stderr.puts e.inspect
end