On Feb 17, 11:16 am, Web Developer <li...@ruby-forum.com> wrote:
> Any solution to this????
> I am stuck :-(

Well if acts_as_taggable behaves as Lasse says then sounds like you
need to write a custom validation method that checks the various cases
that can occur. Something like

validates :tags_long_enough

def tags_long_enough
  if ...
    errors.add(:tag_list, "those tags are not nice")
  end
end

would probably do the job

Fred

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to