Class: PullRequestSummarizer::Report::Base

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

Direct Known Subclasses

Elections, Organizations, People, PeopleNames, Terms, Wikidata

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(popolo_before, popolo_after) ⇒ Base

Returns a new instance of Base.



6
7
8
9
# File 'lib/pull_request_summarizer/report/base.rb', line 6

def initialize(popolo_before, popolo_after)
  @before = popolo_before
  @after  = popolo_after
end

Instance Attribute Details

#afterObject (readonly)

Returns the value of attribute after.



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

def after
  @after
end

#beforeObject (readonly)

Returns the value of attribute before.



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

def before
  @before
end