Railsでモデルを全列挙する方法

Is there a way to get a collection of all the Models in your Rails app? - Stack Overflow

いろいろ方法があるし、どの方法も一長一短に思える。

その1

# eager_load!...
Rails.application.eager_load!
ActiveRecord::Base.descendants

その2

# 自分のユースケース的にはこれが良かった。全テーブル名を取得して、
tables = ActiveRecord::Base.connection.tables

# こんな感じでmapしてテーブル名からモデルクラスをたどる。
tables.map(&:classify).map(&:safe_constantize).compact