class ActiveReporter::Calculator::Base

Public Instance Methods

aggregator() click to toggle source
# File lib/active_reporter/calculator/base.rb, line 6
def aggregator
  opts[:aggregator] || name
end
parent_aggregator() click to toggle source
# File lib/active_reporter/calculator/base.rb, line 10
def parent_aggregator
  opts[:parent_aggregator] || aggregator
end
totals?() click to toggle source
# File lib/active_reporter/calculator/base.rb, line 14
def totals?
  !!opts[:totals]
end