For acts-as-taggable-on, how do you make Tags be a certain amount of characters? I want users to only be able to have a maximum of 50 characters when they are creating tags.

Thank you.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can use a validation for this. Try using this in your model. Replace :tag_name with the correct field.

validates_length_of :tag_name, :maximum=>50

Also an awesome reference to rails validations is here.

link|improve this answer
Nice, thanks for pointing out the site too. – Railslearner Jun 17 '11 at 19:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.