aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/string/exclude.rb
blob: 5ca268b9534241685d98e6d344b80a8f898736a6 (plain) (blame)
1
2
3
4
5
6
class String
  # The inverse of String#include?. Returns true if the string does not include the other string.
  def exclude?(string)
    !include?(string)
  end
end