Concerns in Rails
Concerns allow us to include modules with methods (both instance and class) and constants into a class so that the including class can use them.
Rails concerns are defined by extending ActiveSupport::Concern module. By extending this the module can d...
codingwithaglassofmilk.hashnode.dev2 min read