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:



266
267
268
269
# File 'lib/activerecord/summarize.rb', line 266

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