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

Merge pull request #6354 from lest/patch-1

remove unnecessary require
This commit is contained in:
Rafael Mendonça França 2012-05-16 12:51:16 -07:00
commit e8feaff60b
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

@ -1,5 +1,5 @@
# encoding: utf-8
require 'active_support/core_ext/string/multibyte'
require 'active_support/multibyte'
require 'active_support/i18n'
module ActiveSupport