This Gem is based on the question/answer in this Stackoverflow discussion.
It's purpose is to add an associations validation error messages to the parent model.
Add this line to your application's Gemfile:
gem 'validates_associated_bubbling'
And then execute:
$ bundle
Or install it yourself as:
$ gem install validates_associated_bubbling
Add this line to a model that has associations:
class SomeModel < ActiveRecord::Base
validates_associated_bubbling :association1, :association2_or_more, unless: :some_predicate
end
Same options available as other validation class methods.