def validate if subject.split.any?{|w| w.length > 26} errors.add(:subject, "cannot have words more than 26 consecutive characters") end end
You need to create an account or log in to post comments to this site.
11338 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
def validate if subject.split.any?{|w| w.length > 26} errors.add(:subject, "cannot have words more than 26 consecutive characters") end end
You need to create an account or log in to post comments to this site.