Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby ActiveRecord Basics Validation Errors 2

Customer rails validator not working

I have followed the code EXACTLY from the lesson and could not get it to work properly in my own app OR in the quiz. Here is the code and it says it is wrong. Not sure why

contact.rb
 class Contact < ActiveRecord::Base
   validate :name_is_evil

   def name_is_evil
     if last_name.include?("evil")
       self.errors.add(:last_name, " is evil")
     end
   end

 end

1 Answer