aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #4332 from norman/multibyteJosé Valim2012-01-058-355/+73
|\ | | | | Putting AS::Multibyte on a Ruby 1.9 diet
| * Use friendlier method nameNorman Clarke2012-01-052-3/+3
| |
| * Use friendlier method names for upcasing/downcasingNorman Clarke2012-01-052-12/+20
| |
| * Use more descriptive method namesNorman Clarke2012-01-052-8/+8
| |
| * Move include to top of class for clarityNorman Clarke2012-01-051-2/+1
| |
| * Remove unnecessary requires/encoding commentNorman Clarke2012-01-051-3/+0
| |
| * Replace Unicode.u_unpack with String#codepointsNorman Clarke2012-01-055-38/+5
| |
| * Remove multibyte utilsNorman Clarke2012-01-053-140/+1
| | | | | | | | This is neither a public API, nor used internally, so let's remove it.
| * Remove "_codepoints" from compose/decomposeNorman Clarke2012-01-052-9/+9
| |
| * 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-052-46/+0
| |
| * Assume Encoding supportNorman Clarke2012-01-051-5/+1
| |
| * Update to Unicode 6.0Norman Clarke2012-01-052-1/+1
| |
| * Remove useless parensNorman Clarke2012-01-051-1/+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 ↵Norman Clarke2012-01-053-12/+6
| |\ | | | | | | | | | | | | | | | | | | into multibyte Conflicts: activesupport/lib/active_support/multibyte/chars.rb
| | * refactor AS::Multibyte::CharsSergey Nartimov2012-01-052-40/+6
| | |
| * | Make return value from bang methods match Ruby docsNorman Clarke2012-01-052-6/+12
| | | | | | | | | | | | | | | The docs for the String class indicate that methods like `rstrip!` and others should return nil when they do not have an effect on the string.
| * | Override #slice! to ensure proper return value.Norman Clarke2012-01-051-0/+4
| | | | | | | | | | | | | | | The default pass-through to `method_missing` makes `#slice!` return `self` rather than the string that was sliced off.
| * | Remove overidden slice and slice! methods.Norman Clarke2012-01-051-29/+1
| | |
| * | Fix incorrect behavior specified in test.Norman Clarke2012-01-051-1/+1
| | | | | | | | | | | | This test was actually specifying the opposite of what it should.
* | | Merge pull request #4335 from lest/useless-multibyte-cleanJosé Valim2012-01-051-1/+1
|\ \ \ | | | | | | | | remove use of Multibyte.clean as it's no-op in ruby 1.9
| * | | remove use of Multibyte.clean as it's no-op in ruby 1.9Sergey Nartimov2012-01-061-1/+1
| | | |
* | | | Merge pull request #4334 from lest/remove-obsolete-commented-assertsJosé Valim2012-01-051-6/+0
|\ \ \ \ | |/ / / |/| | | remove obsolete commented asserts in TextHelper tests
| * | | remove obsolete commented asserts in TextHelper testsSergey Nartimov2012-01-061-6/+0
|/ / /
* | | Merge pull request #4330 from lest/remove-call-mbcharsAaron Patterson2012-01-052-5/+5
|\ \ \ | | | | | | | | remove useless call to mb_chars
| * | | remove useless call to mb_charsSergey Nartimov2012-01-052-5/+5
| | | |
* | | | Merge pull request #4303 from Karunakar/loggerSantiago Pastorino2012-01-0513-17/+15
|\ \ \ \ | |/ / / |/| | | Moved the logger methods in activeresource/test/abstract_unit.rb
| * | | Moved all the logger methods to active support loggerKarunakar (Ruby)2012-01-0613-17/+15
| | | | | | | | | | | | | | | | minor
* | | | Merge pull request #4329 from rafaelfranca/patch-1Jeremy Kemper2012-01-052-11/+8
|\ \ \ \ | | | | | | | | | | Array.wrap is no longer needed at ActionMailer
| * | | | Array.wrap is no longer needed hereRafael Mendonça França2012-01-052-11/+8
|/ / / /
* / / / do not require a file that is not usedAaron Patterson2012-01-052-2/+1
|/ / /
* | | delete reaping frequency from the db configAaron Patterson2012-01-051-4/+6
| | |
* | | Merge pull request #4301 from Karunakar/refactor_testsAaron Patterson2012-01-051-4/+7
|\ \ \ | | | | | | | | Refactor tests
| * | | removed unnecessary +1 from assert_difference because default difference is 1Karunakar (Ruby)2012-01-051-1/+1
| | | |
| * | | refactored tests -- assert_diffrence instead of checking directly with countKarunakar (Ruby)2012-01-041-4/+7
| | | |
* | | | Merge pull request #4304 from lest/refactor-truncateAaron Patterson2012-01-051-6/+5
|\ \ \ \ | | | | | | | | | | refactor String#truncate not to use mb_chars
| * | | | refactor String#truncate not to use mb_charsSergey Nartimov2012-01-041-6/+5
| | | | |
* | | | | Merge pull request #4315 from larskanis/allow_setting_of_pgconn_paramsAaron Patterson2012-01-052-17/+39
|\ \ \ \ \ | | | | | | | | | | | | PostgreSQL: Allow consistent setting of libpq params in database connection specification
| * | | | | Postgresql: restore previous behaviour regarding to nil values in connection ↵Lars Kanis2012-01-051-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | specification Hash
| * | | | | Postgresql: add test case for setting custom libpq connection parametersLars Kanis2012-01-041-0/+15
| | | | | |
| * | | | | Postgresql: Allow setting of any libpq connection parametersLars Kanis2012-01-031-17/+23
| | | | | |
* | | | | | Merge pull request #4316 from wrozka/time_advance_nsecAaron Patterson2012-01-052-1/+6
|\ \ \ \ \ \ | | | | | | | | | | | | | | Time advance nsec bug
| * | | | | | Nano seconds fraction of time is copied properly in Time#advancePawel Pierzchala2012-01-052-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When day, month or year was passed, advance created a new time ignoring previous nsec fraction. Now nsec is passed through usec as a Rational number.
* | | | | | | Merge pull request #4320 from castlerock/include_only_minitestSantiago Pastorino2012-01-051-29/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | support only MiniTest run with Isolation test
| * | | | | | | support only MiniTest run with Isolation test Vishnu Atrai2012-01-051-29/+1
| | |_|_|_|_|/ | |/| | | | |
* | | | | | | Merge pull request #4319 from castlerock/parse_only_minitest_resultsSantiago Pastorino2012-01-051-21/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | parse only minitest results in isolation test
| * | | | | | | parse only minitest results in isolation test Vishnu Atrai2012-01-051-21/+1
| |/ / / / / /
* | | | | | | Merge pull request #4325 from juanpastas/masterAaron Patterson2012-01-051-1/+0
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | erased duplicated line