1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #6522 from lest/patch-1

ActiveSupport require and dependencies
This commit is contained in:
José Valim 2012-05-28 13:46:53 -07:00
commit 68f23bea6b
3 changed files with 1 additions and 5 deletions

View file

@ -1,5 +1,3 @@
require 'active_support/multibyte'
class String
# If you pass a single Fixnum, returns a substring of one character at that
# position. The first character of the string is at position 0, the next at

View file

@ -1,5 +1,3 @@
require 'active_support/core_ext/string/multibyte'
class String
# Returns the string, first removing all whitespace on both ends of
# the string, and then changing remaining consecutive whitespace

View file

@ -76,7 +76,7 @@ module ActiveSupport #:nodoc:
#
# 'Café périferôl'.mb_chars.split(/é/).map { |part| part.upcase.to_s } # => ["CAF", " P", "RIFERÔL"]
def split(*args)
@wrapped_string.split(*args).map { |i| i.mb_chars }
@wrapped_string.split(*args).map { |i| self.class.new(i) }
end
# Works like like <tt>String#slice!</tt>, but returns an instance of Chars, or nil if the string was not