aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
Commit message (Collapse)AuthorAgeFilesLines
* fix incorrect example [ci skip]Vijay Dev2012-05-121-1/+1
|
* remove docs related to ruby 1.8 from Array#wrapVasiliy Ermolovich2012-05-121-3/+0
|
* added examples to Integer#multiple_of?Francesco Rodriguez2012-05-111-0/+4
|
* removing trailing spacesFrancesco Rodriguez2012-05-111-3/+3
|
* added docs to String#to_datetimeFrancesco Rodriguez2012-05-111-0/+6
|
* added docs to String#to_dateFrancesco Rodriguez2012-05-111-0/+6
|
* added examples to String#exclude?Francesco Rodriguez2012-05-111-1/+6
|
* remove unnecessary 'examples' noiseFrancesco Rodriguez2012-05-113-9/+0
|
* fix String#last exampleFrancesco Rodriguez2012-05-111-1/+1
|
* fix String#last exampleFrancesco Rodriguez2012-05-111-1/+1
|
* added docs to String#lastFrancesco Rodriguez2012-05-111-0/+10
|
* improve String#first docsFrancesco Rodriguez2012-05-111-4/+3
|
* fix typo in String#firstFrancesco Rodriguez2012-05-111-1/+1
|
* added docs to String#firstFrancesco Rodriguez2012-05-111-0/+11
|
* added docs to String#fromFrancesco Rodriguez2012-05-111-0/+13
|
* improve String#to docsFrancesco Rodriguez2012-05-111-2/+2
|
* added docs to String#toFrancesco Rodriguez2012-05-111-0/+13
|
* added docs to String#atFrancesco Rodriguez2012-05-111-0/+25
|
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-05-081-23/+111
|\
| * cut some duplication and minor edits [ci skip]Vijay Dev2012-05-081-37/+4
| |
| * added docs to cattr_readerFrancesco Rodriguez2012-05-071-0/+27
| |
| * better docs for cattr_accessor and cattr_writerFrancesco Rodriguez2012-05-071-2/+14
| |
| * added docs and examples to cattr_writer methodFrancesco Rodriguez2012-05-071-5/+41
| |
| * added docs to cattr_accessor methodFrancesco Rodriguez2012-05-071-12/+50
| |
| * adding example about using cattr_accessor with subclassesFrancesco Rodriguez2012-05-071-0/+8
| |
* | Merge pull request #6064 from gazay/fix_guides_for_as_core_extXavier Noria2012-05-071-3/+3
|\ \ | | | | | | Fix guides for as core ext
| * | Changes for numeric api for Time because Time.current works differentAlexey Gaziev2012-05-071-3/+3
| | |
* | | Keep all methods in object/deep_dupPiotr Sarnacki2012-05-065-16/+16
| | |
* | | Nice logic for deep_dup in railsAlexey Gaziev2012-05-065-4/+16
| | |
* | | added beginning_of_hour support to core_ext calculations for Time and DateTimeMark J. Titorenko2012-05-042-0/+26
| |/ |/|
* | Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-05-011-1/+1
|\ \ | |/ |/|
| * Minor English fix.Erich Menge2012-04-301-1/+1
| |
* | Tests for regexp separator in String#truncateAlexey Gaziev2012-04-291-1/+4
| | | | | | | | https://github.com/rails/rails/commit/5a7513593f64e0ff7e4de1ee37bac5eeddfae270
* | Merge pull request #5996 from gazay/remove_excess_selfsJeremy Kemper2012-04-2841-324/+473
|\ \ | |/ |/| Active Support housekeeping and polish
| * String quotes and trailing spacesAlexey Gaziev2012-04-2921-126/+126
| |
| * Indentation for private methodsAlexey Gaziev2012-04-292-20/+18
| | | | | | | | https://github.com/rails/rails/commit/e7d55f734aae204115d0a04a2db774ac364c1312
| * AS core_ext refactoring pt.2Alexey Gaziev2012-04-2920-86/+110
| |
| * AS core_ext refactoringAlexey Gaziev2012-04-2915-93/+220
| |
* | Merge pull request #5880 from asanghi/masterJeremy Kemper2012-04-251-2/+2
|\ \ | |/ |/| Stamp out ruby-debug with debugger everywhere else in the code base
| * and one more timeAditya Sanghi2012-04-241-2/+2
| |
| * another attempt at the languageAditya Sanghi2012-04-181-1/+1
| |
| * review changes for #5875Aditya Sanghi2012-04-181-1/+1
| |
| * stamp out ruby-debug19 with extreme prejudice :)Aditya Sanghi2012-04-171-2/+2
| |
* | Remove circular require of time/zonesOscar Del Ben2012-04-211-1/+0
|/
* Require for time_with_zone should stay in core_ext/time_zones :bomb:Piotr Sarnacki2012-04-151-0/+1
|
* Add missing require in Active Support time zones (fixes #5854)Piotr Sarnacki2012-04-151-1/+1
| | | | | I also removed the other require as it's already present in `activesupport/core_ext/time/calculations`
* Remove Module#delegate!Daniel Schierbeck2012-04-121-52/+0
|
* Add back the old `deprecate` method as `deprecate!`Daniel Schierbeck2012-04-121-0/+52
|
* Change API docs regarding delegation to non-public methodsDaniel Schierbeck2012-04-121-1/+1
|
* Optimize the performance of #delegateDaniel Schierbeck2012-04-121-9/+13
| | | | | | Remove the use of #__send__ in order to boost performance. This also means that you can no longer delegate to private methods on the target object.