squish!()
Performs a destructive squish. See String#squish.
# File activesupport/lib/active_support/core_ext/string/filters.rb, line 16 def squish! gsub!(/\A[[:space:]]+/, '') gsub!(/[[:space:]]+\z/, '') gsub!(/[[:space:]]+/, ' ') self end