concern(topic, &module_definition)
Instance Public methods
A low-cruft shortcut to define a concern.
1 2 3 | concern :EventTracking do ... end |
is equivalent to
1 2 3 4 5 | module EventTracking extend ActiveSupport::Concern ... end |
Please login to continue.