# File lib/shoulda/active_record/macros.rb, line 260 260: def should_validate_numericality_of(*attributes) 261: ::ActiveSupport::Deprecation.warn("use: should validate_numericality_of") 262: message = get_options!(attributes, :message) 263: attributes.each do |attribute| 264: should validate_numericality_of(attribute). 265: with_message(message) 266: end 267: end