aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/multibyte_unicode_database_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Removed use of mocha in active_supportRonak Jangir2015-07-101-2/+3
|
* Removed magic comments # encoding: utf-8 , since its default from ruby 2.0 ↵Vipul A M2015-02-031-1/+0
| | | | onwards.
* use AS::TestCase as the base classAaron Patterson2012-01-051-1/+1
|
* Use multibyte proxy class on 1.9, refactor Unicode.Norman Clarke2010-05-211-4/+8
| | | | | | | | | | Makes String#mb_chars on Ruby 1.9 return an instance of ActiveSupport::Multibyte::Chars to work around 1.9's lack of Unicode case folding. Refactors class methods from ActiveSupport::Multibyte::Chars into new Unicode module, adding other related functionality for consistency. [#4594 state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Require mocha >= 0.9.0 for AS testsJeremy Kemper2008-11-221-6/+0
|
* Simplify ActiveSupport::Multibyte and make it run on Ruby 1.9.Manfred Stienstra2008-09-211-0/+28
* Unicode methods are now defined directly on Chars instead of a handler * Updated Unicode database to Unicode 5.1.0 * Improved documentation