класс ActiveRecord::Reflection::MacroReflection
Базовый класс для AggregateReflection и AssociationReflection. Объекты AggregateReflection и AssociationReflection возвращаются методом Reflection::ClassMethods.
Атрибуты
Возвращает имя макроса.
composed_of :balance, class_name: 'Money' возвращает :balance has_many :clients возвращает :clients
Возвращает хэш опций, используемых для макроса.
composed_of :balance, class_name: 'Money' возвращает { class_name: "Money" } has_many
:clients возвращает {}
Публичные методы класса
# File activerecord/lib/active_record/reflection.rb, line 273
def initialize(name, scope, options, active_record)
@name = name
@scope = scope
@options = options
@active_record = active_record
@klass = options[:anonymous_class]
@plural_name = active_record.pluralize_table_names ?
name.to_s.pluralize : name.to_s
end Публичные методы экземпляра
# File activerecord/lib/active_record/reflection.rb, line 306
def ==(other_aggregation)
super ||
other_aggregation.kind_of?(self.class) &&
name == other_aggregation.name &&
!other_aggregation.options.nil? &&
active_record == other_aggregation.active_record
end Возвращает true, если self и other_aggregation имеют одинаковый атрибут name, атрибут active_record и other_aggregation имеет назначенный хэш опций.
# File activerecord/lib/active_record/reflection.rb, line 283
def autosave=(autosave)
@automatic_inverse_of = false
@options[:autosave] = autosave
parent_reflection = self.parent_reflection
if parent_reflection
parent_reflection.autosave = autosave
end
end # File activerecord/lib/active_record/reflection.rb, line 300 def compute_class(name) name.constantize end
# File activerecord/lib/active_record/reflection.rb, line 296 def klass @klass ||= compute_class(class_name) end
Возвращает класс для макроса.
composed_of :balance, class_name: 'Money' возвращает класс Money has_many :clients возвращает класс Client
# File activerecord/lib/active_record/reflection.rb, line 314 def scope_for(klass) scope ? klass.unscoped.instance_exec(nil, &scope) : klass.unscoped end
© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.