Sha256: 34f44b85f0b6e8ec14ff26bc4008b9a771fe6e527173858fda8bd2d3fb1ef997

Contents?: true

Size: 825 Bytes

Versions: 6

Compression:

Stored size: 825 Bytes

Contents

require 'property_sets/property_set_model'
require 'property_sets/active_record_extension'
require 'property_sets/version'

begin
  require 'property_sets/action_view_extension'
rescue LoadError
end

module PropertySets
  def self.ensure_property_set_class(association, owner_class_name)
    const_name = "#{owner_class_name}#{association.to_s.singularize.capitalize}".to_sym
    unless Object.const_defined?(const_name)
      property_class = Object.const_set(const_name, Class.new(ActiveRecord::Base))
      property_class.class_eval do
        include PropertySets::PropertySetModel::InstanceMethods
        extend  PropertySets::PropertySetModel::ClassMethods
      end

      property_class.owner_class = owner_class_name
      property_class.owner_assoc = association
    end
    Object.const_get(const_name)
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
property_sets-2.8.0 lib/property_sets.rb
property_sets-2.7.0 lib/property_sets.rb
property_sets-2.6.0 lib/property_sets.rb
property_sets-2.5.0 lib/property_sets.rb
property_sets-2.4.0 lib/property_sets.rb
property_sets-2.3.0 lib/property_sets.rb