airbrake/airbrake-ruby

View on GitHub
lib/airbrake-ruby/grouppable.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Airbrake
  # Grouppable adds the `#groups` method, so that we don't need to define it in
  # all of performance models every time we add a model without groups.
  #
  # @since v4.9.0
  # @api private
  module Grouppable
    def groups
      {}
    end
  end
end