Class: PullRequestSummarizer::Report::Organizations
- Inherits:
-
Base
- Object
- Base
- PullRequestSummarizer::Report::Organizations
show all
- Defined in:
- lib/pull_request_summarizer/report/organizations.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/organizations.rb', line 4
def added
after.organizations - before.organizations
end
|
#removed ⇒ Object
8
9
10
|
# File 'lib/pull_request_summarizer/report/organizations.rb', line 8
def removed
before.organizations - after.organizations
end
|