Module: ActiveRecord::Summarize::RelationMethods

Included in:
Relation
Defined in:
lib/activerecord/summarize.rb

Instance Method Summary collapse

Instance Method Details

#summarize(**opts, &block) ⇒ Object

Raises:



258
259
260
261
# File 'lib/activerecord/summarize.rb', line 258

def summarize(**opts, &block)
  raise Unsummarizable, "Cannot summarize within a summarize block" if @summarize
  ActiveRecord::Summarize::Summarize.new(self, **opts).process(&block)
end