aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/multibyte/chars.rb
Commit message (Expand)AuthorAgeFilesLines
* Update #20737 to address feedbackSean Griffin2015-10-201-2/+5
* Fixed slice! behavior: return nil for out-of-bound parametersGourav Tiwari2015-10-201-1/+2
* File encoding is defaulted to utf-8 in Ruby >= 2.1Akira Matsuda2015-09-181-1/+0
* Merge pull request #20297 from gouravtiwari/patch-9Claudio B.2015-05-261-0/+6
|\
| * Added multibyte slice! example to doc [ci skip]Gourav Tiwari2015-05-261-0/+6
* | Remove redundant 'like' from doc of slice! method [ci skip]Mehmet Emin İNAÇ2015-05-261-1/+1
|/
* Drying up method_missing codeHitendra Singh2013-09-201-2/+1
* update AS/log_subscriber and AS/multibyte docs [ci skip]Francesco Rodriguez2012-09-141-24/+36
* fix warning in Ruby2.0.0takkanm2012-06-111-1/+1
* make AS::Multibyte::Chars work w/o multibyte core extSergey Nartimov2012-05-281-1/+1
* removing unnecessary 'examples' noise from activesupportFrancesco Rodriguez2012-05-131-11/+0
* Use respond_to_missing? for CharsMarc-Andre Lafortune2012-05-051-2/+2
* Build fix when running isolated testArun Agrawal2012-02-011-0/+1
* Added as_json method for multibyte stringsDmitriy Vorotilin2012-02-011-0/+4
* Improve doc consistencyNorman Clarke2012-01-061-3/+3
* Implement Chars#swapcase.Norman Clarke2012-01-061-0/+8
* Use friendlier method nameNorman Clarke2012-01-051-2/+2
* Use friendlier method names for upcasing/downcasingNorman Clarke2012-01-051-3/+3
* Use more descriptive method namesNorman Clarke2012-01-051-2/+2
* Move include to top of class for clarityNorman Clarke2012-01-051-2/+1
* Replace Unicode.u_unpack with String#codepointsNorman Clarke2012-01-051-2/+2
* Remove "_codepoints" from compose/decomposeNorman Clarke2012-01-051-2/+2
* Remove unused code.Norman Clarke2012-01-051-25/+0
* Document method definitionNorman Clarke2012-01-051-0/+2
* Just use Ruby's String#[]=Norman Clarke2012-01-051-41/+0
* Assume Encoding supportNorman Clarke2012-01-051-5/+1
* Just delegate a few methods directly to @wrapped_stringNorman Clarke2012-01-051-20/+3
* Merge branch 'refactor-multibyte-chars' of https://github.com/lest/rails into...Norman Clarke2012-01-051-11/+5
|\
| * refactor AS::Multibyte::CharsSergey Nartimov2012-01-051-39/+5
* | Make return value from bang methods match Ruby docsNorman Clarke2012-01-051-2/+2
* | Override #slice! to ensure proper return value.Norman Clarke2012-01-051-0/+4
* | Remove overidden slice and slice! methods.Norman Clarke2012-01-051-29/+1
|/
* remove checks for encodings availabilitySergey Nartimov2011-12-251-3/+1
* Initial pass at removing dead 1.8.x code from Active Support.José Valim2011-12-201-155/+6
* documentation fix: wrong resultAkira Matsuda2011-07-131-2/+1
* save a few method callsAaron Patterson2010-10-221-2/+3
* removing wtfalseAaron Patterson2010-10-221-1/+1
* removing unused codeAaron Patterson2010-08-221-1/+1
* edit pass to apply API guideline wrt the use of "# =>" in example codeXavier Noria2010-07-301-36/+37
* Improve bang method defs, make slice! operate in-place. [#5028 state:resolved]Norman Clarke2010-07-081-19/+7
* Improve the idiom used in multibyte chars a bit.José Valim2010-06-301-3/+3
* Fix ActiveSupport::Multibyte::Chars#slice for empty strings when starting off...Alex Muntean2010-06-301-1/+2
* Fix AS::MB::Chars#+ to not alter self [#4646 state:resolved]James MacAulay2010-06-301-1/+1
* Move some methods into 1.8.x-only proxy. [#4978 state:resolved]Norman Clarke2010-06-261-40/+39
* Adds titleize/titlecase to AS::Multibyte::CharsNorman Clarke2010-06-201-0/+10
* <=> is defined twice on multibyte/chars.rb for Ruby < 1.9Sam Elliott and Santiago Pastorino2010-06-201-14/+10
* Explicitly delegate Chars#<=> to work around Kernel#<=> possibly ignoring met...Jeremy Kemper2010-06-111-3/+4
* Move the undef into the 1.9 only branchwycats2010-06-071-2/+2
* If we undef <=>, it solves a problem involving comparison. Please figure out ...wycats2010-06-071-0/+2
* Use multibyte proxy class on 1.9, refactor Unicode.Norman Clarke2010-05-211-436/+141