module Mimi::Core::InheritableProperty

Makes `.inheritable_property` method available to the class.

Example:

“` class A

include Mimi::Core::InheritableProperty

inheritable_property :my_var

end “` @see Mimi::Core::InheritableProperty::ClassMethods#inheritable_property

Public Class Methods

included(base) click to toggle source
# File lib/mimi/core/inheritable_property.rb, line 20
def self.included(base)
  base.send :extend, ClassMethods
end