diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-12-27 15:49:29 -0800 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-12-27 15:49:29 -0800 |
commit | 19c48281a7bd94a42a80c1f8fc905e95820e8506 (patch) | |
tree | 143e16dd0351afdc4f1566cd52dd0fbbf31f533f /activesupport/lib | |
parent | 7c4fb93ac30b03c512ba163c5444eced18f12171 (diff) | |
download | rails-19c48281a7bd94a42a80c1f8fc905e95820e8506.tar.gz rails-19c48281a7bd94a42a80c1f8fc905e95820e8506.tar.bz2 rails-19c48281a7bd94a42a80c1f8fc905e95820e8506.zip |
String#exclude? core extension: inverse of #include?
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/string.rb | 3 | ||||
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/exclude.rb | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/string.rb b/activesupport/lib/active_support/core_ext/string.rb index 0365b6af1c..411ea0f016 100644 --- a/activesupport/lib/active_support/core_ext/string.rb +++ b/activesupport/lib/active_support/core_ext/string.rb @@ -7,4 +7,5 @@ require 'active_support/core_ext/string/access' require 'active_support/core_ext/string/xchar' require 'active_support/core_ext/string/behavior' require 'active_support/core_ext/string/interpolation' -require 'active_support/core_ext/string/output_safety'
\ No newline at end of file +require 'active_support/core_ext/string/output_safety' +require 'active_support/core_ext/string/exclude' diff --git a/activesupport/lib/active_support/core_ext/string/exclude.rb b/activesupport/lib/active_support/core_ext/string/exclude.rb new file mode 100644 index 0000000000..5ca268b953 --- /dev/null +++ b/activesupport/lib/active_support/core_ext/string/exclude.rb @@ -0,0 +1,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 |