Class: PullRequestSummarizer::Report::People

Inherits:
Base
  • Object
show all
Defined in:
lib/pull_request_summarizer/report/people.rb

Instance Attribute Summary

Attributes inherited from Base

#after, #before

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from PullRequestSummarizer::Report::Base

Instance Method Details

#addedObject



4
5
6
# File 'lib/pull_request_summarizer/report/people.rb', line 4

def added
  after.persons - before.persons
end

#removedObject



8
9
10
# File 'lib/pull_request_summarizer/report/people.rb', line 8

def removed
  before.persons - after.persons
end