Module: ActiveRecord::Translation
Instance Method Summary collapse
-
#i18n_scope ⇒ Object
Set the i18n scope to override ActiveModel.
-
#lookup_ancestors ⇒ Object
Set the lookup ancestors for ActiveModel.
Instance Method Details
#i18n_scope ⇒ Object
Set the i18n scope to override ActiveModel.
20 21 22 |
# File 'lib/active_record/translation.rb', line 20 def i18n_scope # :nodoc: :activerecord end |
#lookup_ancestors ⇒ Object
Set the lookup ancestors for ActiveModel.
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/active_record/translation.rb', line 8 def lookup_ancestors # :nodoc: klass = self classes = [klass] return classes if klass == ActiveRecord::Base while !klass.base_class? classes << klass = klass.superclass end classes end |