module Property::Attribute::Base

This is just a helper module that includes the necessary code for property access, but without the validation/save hooks.

Public Class Methods

included(base) click to toggle source
# File lib/property/attribute.rb, line 25
def self.included(base)
  base.extend ClassMethods

  base.class_eval do
    include InstanceMethods

    store_properties_in self
  end
end