Sha256: 7faeb6c8abe6f6271e3a6ebd2a6af6397a290088145d1318b94c3b15b6aeebd0
Contents?: true
Size: 271 Bytes
Versions: 24
Compression:
Stored size: 271 Bytes
Contents
class String def remove(string_or_rx) sub(string_or_rx, '') end def remove!(string_or_rx) sub!(string_or_rx, '') end def remove_all(string_or_rx) gsub(string_or_rx, '') end def remove_all!(string_or_rx) gsub!(string_or_rx, '') end end
Version data entries
24 entries across 24 versions & 1 rubygems