aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
Commit message (Collapse)AuthorAgeFilesLines
...
* | require test/unit and sort test orderAaron Patterson2012-01-061-0/+6
| |
* | started converting AS::TestCase to minitestAaron Patterson2012-01-061-2/+12
|/
* just mix the run method in for minitestAaron Patterson2012-01-061-14/+11
|
* Merge pull request #4358 from castlerock/remove_plus_minus_support_for_ruby18Santiago Pastorino2012-01-061-23/+0
|\ | | | | revert "fixing some tests on ruby 1.9.3"
| * revert "fixing some tests on ruby 1.9.3 SHA 33f222b"Vishnu Atrai2012-01-071-23/+0
| |
* | Remove more references to Test::UnitRafael Mendonça França2012-01-061-19/+0
|/
* Improve doc consistencyNorman Clarke2012-01-061-3/+3
|
* Implement Chars#swapcase.Norman Clarke2012-01-062-0/+16
|
* Remove Array.wrap calls in ActiveSupportRafael Mendonça França2012-01-066-18/+13
|
* Merge pull request #3637 from bogdan/compile_optionsJosé Valim2012-01-051-58/+62
|\ | | | | AS::Callbacks::Callback refactor
| * AS::Callbacks::Callback refactorBogdan Gusiev2011-11-151-58/+62
| | | | | | | | | | | | In order to make Callbacks code always operate on valid peaces of code Concatenated Callback#start and Callback#end method into #apply method.
* | Merge pull request #4322 from castlerock/minitest_pendingJosé Valim2012-01-051-33/+1
|\ \ | | | | | | ActiveSupport::Testing::Pending support for MiniTest only
| * | ActiveSupport::Testing::Pending support for MiniTest onlyVishnu Atrai2012-01-051-33/+1
| | |
* | | Merge pull request #4332 from norman/multibyteJosé Valim2012-01-056-239/+60
|\ \ \ | | | | | | | | Putting AS::Multibyte on a Ruby 1.9 diet
| * | | Use friendlier method nameNorman Clarke2012-01-051-2/+2
| | | |
| * | | 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-054-27/+5
| | | |
| * | | Remove multibyte utilsNorman Clarke2012-01-052-47/+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-051-41/+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-051-11/+5
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into multibyte Conflicts: activesupport/lib/active_support/multibyte/chars.rb
| | * | | refactor AS::Multibyte::CharsSergey Nartimov2012-01-051-39/+5
| | |/ /
| * | | Make return value from bang methods match Ruby docsNorman Clarke2012-01-051-2/+2
| | | | | | | | | | | | | | | | | | | | 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
| |/ /
* | | 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 #4316 from wrozka/time_advance_nsecAaron Patterson2012-01-051-1/+1
|\ \ \ \ | | | | | | | | | | Time advance nsec bug
| * | | | Nano seconds fraction of time is copied properly in Time#advancePawel Pierzchala2012-01-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | support only MiniTest run with Isolation test Vishnu Atrai2012-01-051-29/+1
| |_|/ / |/| | |
* | | | Revert "AS::Callbacks: remove __define_runner"José Valim2012-01-041-3/+16
| |/ / |/| | | | | | | | | | | | | | Runners are used internally. This reverts commit 40c8aa706adbb60ff9d289016fb9020d48969fea.
* | | simplify Class#descendants using singleton_class methodSergey Nartimov2012-01-041-1/+1
| | |
* | | Merge pull request #4298 from rafaelfranca/patch-2Aaron Patterson2012-01-044-51/+1
|\ \ \ | | | | | | | | Remove rescue block to require psych gem
| * | | No need to override to_yaml method in ActiveSupport::TimeWithZoneRafael Mendonça França2012-01-041-7/+1
| | | |
| * | | No need to override to_yaml method in ActiveSupport::OrderedHashRafael Mendonça França2012-01-041-15/+0
| | | |
| * | | No need to override the to_yaml method in ActiveSupporte::SafeBufferRafael Mendonça França2012-01-041-5/+0
| | | |
| * | | No need to override the to_yaml method in BigDecimalRafael Mendonça França2012-01-041-15/+0
| | | |
| * | | No need to use rescue block to require psychRafael Mendonça França2012-01-042-11/+2
| | | |
| * | | No need to check if YAML::ENGINE is defined since ruby 1.9 does thatRafael Mendonça França2012-01-044-4/+4
| |/ /
* / / using the active support loggerKarunakar (Ruby)2012-01-041-2/+2
|/ /
* | use correct variant of checking whether class is a singletonSergey Nartimov2012-01-031-1/+1
| |