Например, есть некоторые модели
class Model_1 < ActiveRecord::Base
has_many :images, :as => :imageable
end
class Model_2 < ActiveRecord::Base
# doesn't have has_many association
end
...
class Image < ActiveRecord::Base
belongs_to :imageable, :polymorphic => true
end
Как я могу проверить, что модель имеет ассоциацию has_many? Как то так
class ActiveRecord::Base
def self.has_many_association_exists?(:association)
...
end
end
И это можно использовать так
Model_1.has_many_association_exists?(:images) # true
Model_2.has_many_association_exists?(:images) # false
Заранее спасибо