if I do
validates :body, :presence => true, :length => {:maximum => 30000, :message => \' is a bit long...\'} validates :body, :length =>
What if you try adding something like this:
validates_format_of :body, :with => /\A[[:graph:]]\Z/i
Notes:
validates_format_of
[[:graph:]]