Sha256: 08a3c3601d7dfa670347e3fd6728eb0e8870ca331dcb2e9f75352fd724759110

Contents?: true

Size: 730 Bytes

Versions: 189

Compression:

Stored size: 730 Bytes

Contents

module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module String #:nodoc:
      module Filters
        # Returns the string, first removing all whitespace on both ends of
        # the string, and then changing remaining consecutive whitespace
        # groups into one space each.
        #
        # Examples:
        #   %{ Multi-line
        #      string }.squish                   # => "Multi-line string"
        #   " foo   bar    \n   \t   boo".squish # => "foo bar boo"
        def squish
          dup.squish!
        end

        # Performs a destructive squish. See String#squish.
        def squish!
          strip!
          gsub!(/\s+/, ' ')
          self
        end
      end
    end
  end
end

Version data entries

189 entries across 156 versions & 24 rubygems

Version Path
webroar-0.4.0 src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb
nbudin-castronaut-0.7.5 vendor/activesupport/lib/active_support/core_ext/string/filters.rb
radiant-0.9.1 vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb
activesupport-2.3.8 lib/active_support/core_ext/string/filters.rb
activesupport-2.3.8.pre1 lib/active_support/core_ext/string/filters.rb
activesupport-2.3.7 lib/active_support/core_ext/string/filters.rb
activesupport-2.3.6 lib/active_support/core_ext/string/filters.rb
radiant-0.8.2 vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb
radiant-0.9.0.rc2 vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb
webroar-0.3.1 src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb
webroar-0.3.0 src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb
usher-0.7.0 spec/rails2_3/vendor/rails/vendor/rails/activesupport/pkg/activesupport-2.3.3/lib/active_support/core_ext/string/filters.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb
usher-0.7.0 spec/rails2_2/vendor/rails/vendor/rails/activesupport/pkg/activesupport-2.2.2/lib/active_support/core_ext/string/filters.rb
usher-0.7.0 spec/rails2_3/vendor/rails/vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb
activesupport-2.3.6.pre lib/active_support/core_ext/string/filters.rb
simply_stated-0.0.5 vendor/gems/ruby/1.8/gems/activesupport-2.3.5/lib/active_support/core_ext/string/filters.rb
simply_stated-0.0.4 vendor/gems/ruby/1.8/gems/activesupport-2.3.5/lib/active_support/core_ext/string/filters.rb
factorylabs-castronaut-0.7.5 vendor/activesupport/lib/active_support/core_ext/string/filters.rb
ginst-2009.12.8 vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb