Module: ActiveRecord::Summarize::RelationMethods
- Included in:
- Relation
- Defined in:
- lib/activerecord/summarize.rb
Instance Method Summary collapse
Instance Method Details
#summarize(**opts, &block) ⇒ Object
290 291 292 293 |
# File 'lib/activerecord/summarize.rb', line 290 def summarize(**opts, &block) raise Unsummarizable, "Cannot summarize within a summarize block" if @summarize ActiveRecord::Summarize::Summarize.new(self, **opts).process(&block) end |