Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Last active May 20, 2018 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fatosmorina/680b3683ca530c72502f7d912e857a3a to your computer and use it in GitHub Desktop.
Save fatosmorina/680b3683ca530c72502f7d912e857a3a to your computer and use it in GitHub Desktop.
#File activesupport / lib / active_support / core_ext / string / filters.rb, line 16
def squish!
gsub!(/\A[[:space:]]+/, '')
gsub!(/[[:space:]]+\z/, '')
gsub!(/[[:space:]]+/, ' ')
self
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment