In ruby I read that a class cannot inherit from multiple classes but in rails there is this code:
class ApplicationRecord < ActiveRecord::Base
self.abstract_class = true
end
inside app/models/application_record.rb
I know about symbols in ruby but what does this ActiveRecord::Base
mean in the rails application file? I want to know