# File lib/shoulda/active_record/macros.rb, line 447 447: def should_validate_acceptance_of(*attributes) 448: ::ActiveSupport::Deprecation.warn("use: should validate_acceptance_of") 449: message = get_options!(attributes, :message) 450: 451: attributes.each do |attribute| 452: should validate_acceptance_of(attribute).with_message(message) 453: end 454: end