Class: Pronto::Formatter::GithubFormatter

Inherits:
Object
  • Object
show all
Defined in:
lib/pronto/formatter/github_formatter.rb

Instance Method Summary collapse

Instance Method Details

#format(messages, repo) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/pronto/formatter/github_formatter.rb', line 4

def format(messages, repo)
  commit_messages = messages.map do |message|
    github_slug = repo.github_slug
    sha = message.commit_sha
    body = message.msg
    path = message.path
    position = message.line.commit_line.position if message.line

    comment = Github::Comment.new(github_slug, sha, body, path, position)
    create_comment(github_slug, sha, comment)
  end

  "#{commit_messages.compact.count} Pronto messages posted to GitHub"
end