instance method
squish!
Ruby on Rails 3.2.22.5
Since v3.0.20Signature
squish!()
Performs a destructive squish. See String#squish.
Source
# File activesupport/lib/active_support/core_ext/string/filters.rb, line 17
def squish!
strip!
gsub!(/\s+/, ' ')
self
end
Defined in activesupport/lib/active_support/core_ext/string/filters.rb line 17
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in String