ActsWithoutScripts ================== This plugin will remove tags from your models' string and text fields before validation. acts_without_scripts can receive three options. Usage is as follows: - acts_without_scripts will strip script tags from all the string and text fields. - acts_without_scripts :only => :title will strip script tags only in title. acts_without_scripts :only => [:title, :brief] will strip script tags only in title and brief. - acts_without_scripts :except => :title will strip script tags from all the fields except title. - acts_without_scripts :except => [:title, :brief] will strip script tags from all the fields except title and brief. - acts_without_scripts :with => :before_save action performed with :before_save callback, :before_validation is default.