aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/multibyte_chars_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Add AS::Multibyte::Chars#match?Akira Matsuda2019-07-291-0/+6
* Enable `Layout/EmptyLinesAroundAccessModifier` copRyuta Kamizono2019-06-131-1/+0
* Add test for normalizing non-unicode stringFumiaki MATSUSHIMA2018-11-151-0/+10
* Use String#truncate_bytes inside Multibyte::Chars#limitFrancesco Rodríguez2018-10-201-18/+0
* Deprecate ActiveSupport::Multibyte::Chars.consumes?Francesco Rodríguez2018-10-151-3/+9
* Deprecate Unicode#normalize and Chars#normalize (#34202)Francesco Rodríguez2018-10-121-16/+57
* Use native String#capitalizeFrancesco Rodríguez2018-10-121-1/+1
* Deprecate Unicode#downcase/upcase/swapcase.Francesco Rodríguez2018-10-121-0/+6
* Enable `Performance/UnfreezeString` copyuuji.yaginuma2018-09-231-12/+12
* Replace `assert !` with `assert_not`Daniel Colson2018-04-191-2/+2
* Use assert_predicate and assert_not_predicateDaniel Colson2018-01-251-1/+1
* Use respond_to test helpersDaniel Colson2018-01-251-4/+4
* [Active Support] `rubocop -a --only Layout/EmptyLineAfterMagicComment`Koichi ITO2017-07-111-0/+1
* Use frozen-string-literal in ActiveSupportKir Shatrov2017-07-091-0/+1
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
* Merge pull request #29540 from kirs/rubocop-frozen-stringMatthew Draper2017-07-021-0/+1
|\
| * Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
* | Make ActiveSupport frozen string literal friendly.Pat Allan2017-06-201-14/+14
|/
* Add `Style/EmptyLinesAroundMethodBody` in `.rubocop.yml` and remove extra emp...Ryuta Kamizono2017-02-121-1/+0
* Correct spellingBenjamin Fleischer2017-02-051-1/+1
* "Use assert_nil if expecting nil. This will fail in minitest 6."Akira Matsuda2016-12-251-8/+8
* Add more rubocop rules about whitespacesRafael Mendonça França2016-10-291-6/+6
* improve error message when include assertions failMichael Grosser2016-09-161-5/+5
* Add three new rubocop rulesRafael Mendonça França2016-08-161-2/+2
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-11/+11
* modernizes hash syntax in activesupportXavier Noria2016-08-061-2/+2
* applies new string literal convention in activesupport/testXavier Noria2016-08-061-183/+183
* Merge pull request #12877 from aroben/extended-graphemesRafael França2015-12-311-3/+29
|\
| * Beef up #grapheme_length testsAdam Roben2013-11-131-3/+29
* | Update #20737 to address feedbackSean Griffin2015-10-201-0/+8
* | Fixed slice! behavior: return nil for out-of-bound parametersGourav Tiwari2015-10-201-0/+4
* | Removed magic comments # encoding: utf-8 , since its default from ruby 2.0 on...Vipul A M2015-02-031-1/+0
* | Pass symbol as an argument instead of a blockErik Michaels-Ober2014-11-291-1/+1
* | "warning: assigned but unused variable"Akira Matsuda2014-08-191-1/+0
* | Avoid mutating the constants in a test caseAkira Matsuda2014-08-161-3/+1
* | Avoid polluting String class globally in a test caseAkira Matsuda2014-08-161-8/+13
* | Unused ivar in a test suiteAkira Matsuda2014-08-161-1/+0
* | Prefer assert_raise instead of flunk + rescue to test for exceptionsCarlos Antonio da Silva2013-12-191-3/+3
|/
* ensure original encoding doesnt changeFrancesco Rodriguez2012-12-011-0/+3
* Simplify String#mb_chars and stop proxying #classSteve Klabnik2012-11-281-1/+4
* Fix class_eval without __FILE__ and __LINE__.kennyj2012-07-181-1/+1
* Use respond_to_missing? for CharsMarc-Andre Lafortune2012-05-051-0/+9
* Added as_json method for multibyte stringsDmitriy Vorotilin2012-02-011-0/+3
* Implement Chars#swapcase.Norman Clarke2012-01-061-2/+13
* use AS::TestCase as the base classAaron Patterson2012-01-051-3/+3
* Use friendlier method nameNorman Clarke2012-01-051-1/+1
* Replace Unicode.u_unpack with String#codepointsNorman Clarke2012-01-051-11/+0
* Just use Ruby's String#[]=Norman Clarke2012-01-051-5/+0
* Merge branch 'refactor-multibyte-chars' of https://github.com/lest/rails into...Norman Clarke2012-01-051-1/+1
|\
| * refactor AS::Multibyte::CharsSergey Nartimov2012-01-051-1/+1