Speed up i18n-code

This commit is contained in:
Nikolay Markov 2020-07-17 00:08:53 +03:00 committed by Anil Kumar Maurya
parent 1cca1b24d6
commit 739d40af84
1 changed files with 3 additions and 1 deletions

View File

@ -46,8 +46,10 @@ module AASM
end
def ancestors_list(klass)
has_active_record_base = defined?(::ActiveRecord::Base)
klass.ancestors.select do |ancestor|
ancestor.respond_to?(:model_name) unless ancestor.name == 'ActiveRecord::Base'
not_active_record_base = has_active_record_base ? (ancestor != ::ActiveRecord::Base) : true
ancestor.respond_to?(:model_name) && not_active_record_base
end
end
end