module RKS::Support::Concern

Public Instance Methods

included(receiver) click to toggle source
# File lib/rks/support/concern.rb, line 4
def included(receiver)
  receiver.extend self::ClassMethods if const_defined?(:ClassMethods)
  receiver.send :include, self::InstanceMethods if const_defined?(:InstanceMethods)
end