Active Record の表記について

Rails における『API Documentation Guidelines』からの抜粋。

The proper names of Rails components have a space in between the words, like "Active Support". ActiveRecord is a Ruby module, whereas Active Record is an ORM.

ということで ORM としては Active Record とスペース入りで記述して、Ruby モジュールとしては ActiveRecordとスペースなしで記述するのが正解。

guides.rubyonrails.org

その他のプロダクトについての呼称にも言及されているので一度見ておくのがオススメ。