aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/kernel/concern.rb
blob: bf72caa058eccd5d1bf2568e16e550b1076ee15d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require 'active_support/core_ext/module/concerning'

module Kernel
  # A shortcut to define a toplevel concern, not within a module.
  #
  # See Module::Concerning for more.
  def concern(topic, &module_definition)
    Object.concern topic, &module_definition
  end
end