Sha256: 732a60b149b152e19b5272d12728ea821197684d564171b505fe9cddbadc0b29
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
module ActiveRecord module ActsAs module ReflectionsWithActsAs def _reflections super.reverse_merge(acting_as_model._reflections) end end module ClassMethods def self.included(module_) module_.prepend ReflectionsWithActsAs end def validators_on(*args) super + acting_as_model.validators_on(*args) end def actables acting_as_model.where(actable_id: select(:id), actable_type: model_name.name) end def respond_to_missing?(method, include_private = false) acting_as_model.methods_callable_by_submodel.include?(method) || super end ruby2_keywords def method_missing(method, *args, &block) if acting_as_model.methods_callable_by_submodel.include?(method) result = acting_as_model.public_send(method, *args, &block) if result.is_a?(ActiveRecord::Relation) all.joins(acting_as_name.to_sym).merge(result) else result end else super end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
active_record-acts_as-5.2.0 | lib/active_record/acts_as/class_methods.rb |