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