Changeset 5223
- Timestamp:
- 10/03/06 23:45:32 (3 years ago)
- Files:
-
- trunk/activesupport/CHANGELOG (modified) (1 diff)
- trunk/activesupport/lib/active_support.rb (modified) (1 diff)
- trunk/activesupport/lib/active_support/core_ext/string.rb (modified) (2 diffs)
- trunk/activesupport/lib/active_support/core_ext/string/unicode.rb (added)
- trunk/activesupport/lib/active_support/multibyte (added)
- trunk/activesupport/lib/active_support/multibyte.rb (added)
- trunk/activesupport/lib/active_support/multibyte/chars.rb (added)
- trunk/activesupport/lib/active_support/multibyte/generators (added)
- trunk/activesupport/lib/active_support/multibyte/generators/generate_tables.rb (added)
- trunk/activesupport/lib/active_support/multibyte/handlers (added)
- trunk/activesupport/lib/active_support/multibyte/handlers/passthru_handler.rb (added)
- trunk/activesupport/lib/active_support/multibyte/handlers/utf8_handler_proc.rb (added)
- trunk/activesupport/lib/active_support/multibyte/handlers/utf8_handler.rb (added)
- trunk/activesupport/lib/active_support/values/unicode_tables-1.8.4.dat (added)
- trunk/activesupport/lib/active_support/values/unicode_tables-1.8.5.dat (added)
- trunk/activesupport/test/multibyte_chars_test.rb (added)
- trunk/activesupport/test/multibyte_conformance.rb (added)
- trunk/activesupport/test/multibyte_handler_test.rb (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activesupport/CHANGELOG
r5218 r5223 1 1 *SVN* 2 3 * Add ActiveSupport::Multibyte. Provides String#chars which lets you deal with strings as a sequence of chars, not of bytes. Closes #6242 [Julian Tarkhanov, Manfred Stienstra & Jan Behrens] 2 4 3 5 * Fix issue with #class_inheritable_accessor saving updates to the parent class when initialized with an Array or Hash [mojombo] trunk/activesupport/lib/active_support.rb
r4839 r5223 41 41 42 42 require 'active_support/json' 43 44 require 'active_support/multibyte' trunk/activesupport/lib/active_support/core_ext/string.rb
r3356 r5223 4 4 require File.dirname(__FILE__) + '/string/starts_ends_with' 5 5 require File.dirname(__FILE__) + '/string/iterators' 6 require File.dirname(__FILE__) + '/string/unicode' 6 7 7 8 class String #:nodoc: … … 11 12 include ActiveSupport::CoreExtensions::String::StartsEndsWith 12 13 include ActiveSupport::CoreExtensions::String::Iterators 14 include ActiveSupport::CoreExtensions::String::Unicode 13 15 end