Например, есть несколько моделей
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
Заранее спасибо