Class: PullRequestSummarizer::Report::People
- Inherits:
-
Base
- Object
- Base
- PullRequestSummarizer::Report::People
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
Instance Method Details
#added ⇒ Object
4
5
6
|
# File 'lib/pull_request_summarizer/report/people.rb', line 4
def added
after.persons - before.persons
end
|
#removed ⇒ Object
8
9
10
|
# File 'lib/pull_request_summarizer/report/people.rb', line 8
def removed
before.persons - after.persons
end
|