aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/active_support_core_extensions.textile
Commit message (Collapse)AuthorAgeFilesLines
* revise wording [ci skip]Vijay Dev2012-01-131-2/+1
|
* deprecates Module#local_constant_namesXavier Noria2012-01-121-2/+4
|
* Update Active Support Constants guide for 1.9.Hendy Tanata2012-01-101-12/+10
|
* remove ruby 1.8 example from Array.wrap documentationSergey Nartimov2012-01-051-3/+0
|
* removes the compatibility method Module#method_namesXavier Noria2011-12-251-6/+0
|
* removes the compatibility method Module#instance_method_namesXavier Noria2011-12-251-7/+1
|
* Module#name returns nil for anonymous class in ruby 1.9Vasiliy Ermolovich2011-12-251-1/+1
|
* remove deprecated Module#synchronize from ActiveSupportSergey Nartimov2011-12-241-24/+0
|
* removes Enumerable#pluck from the AS guideXavier Noria2011-12-231-10/+0
|
* remove Proces.daemon from core_extVasiliy Ermolovich2011-12-221-6/+0
|
* Merge pull request #4104 from lest/remove-1-8-codeJosé Valim2011-12-211-26/+0
|\ | | | | remove Enumerable#each_with_object from core_ext as it is present in ruby 1.9
| * remove Enumerable#each_with_object from core_ext as it is present in ruby 1.9lest2011-12-211-26/+0
| |
* | sync AS guide with the Ruby 1.9 related deletions in masterVijay Dev2011-12-211-73/+0
|/
* remove Kernel#singleton_class from core_ext as it is present in ruby 1.9lest2011-12-211-13/+0
|
* Remove some of the ActiveSupport core extensions related to 1.8.Uģis Ozols2011-12-211-12/+0
|
* revises Enumerable#pluck in AS guideVijay Dev2011-12-021-1/+1
|
* Added doc about pluck for active_support core extArun Agrawal2011-12-021-0/+10
|
* fixed finger-dyslexia in active_support core extensions guideTim Sjoberg2011-12-011-1/+1
|
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2011-11-301-1/+3
|\
| * Update Object#in? description for https://github.com/rails/rails/pull/3767Tadas Tamošauskas2011-11-271-1/+3
| |
* | documenting monday and sunday methodsVijay Dev2011-11-261-0/+11
| |
* | Adds Time#sunday methodVijay Dev2011-11-261-0/+1
| |
* | Convert aliases monday and sunday to methodsVijay Dev2011-11-261-3/+6
| | | | | | | | | | | | | | | | A recent change to beginning_of_week and end_of_week added an argument that can be used to specify the week's starting day as a symbol. Now these methods were aliased as monday and sunday respectively which as a consequence of the argument addition, made calls like obj.monday(:sunday) possible. This commit makes them methods on their own.
* | s/end_on_week/end_of_weekVijay Dev2011-11-261-2/+2
| |
* | minor doc changesVijay Dev2011-11-261-1/+1
|/
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2011-11-261-1/+1
|\
| * commarpq2011-11-231-1/+1
| |
* | some tweaks to PR#3547. [Closes #3547]Xavier Noria2011-11-251-1/+3
| |
* | beginning_of_week extended in both Time and Date so that to return week ↵gregolsen2011-11-251-4/+6
|/ | | | start based on start day that is monday by default
* prefer qualified constant "name" to "reference expression", much simplerXavier Noria2011-10-301-2/+2
|
* defines Module#qualified_const_(defined?|get|set) and String#deconstantizeXavier Noria2011-10-291-0/+83
| | | | | | | | | | This commit also implements a faster version of #demodulize I was unable to isolate with git add --patch. Not a big fan of the name #deconstantize. It complements #demodulize getting rid of the rightmost constant, hence the name, but it is unrelated to the well-known #constantize. So unsure. Could not come with anything better, please feel free to rename.
* Merge pull request #3151 from zenprogrammer/pluralize_without_countJosé Valim2011-10-171-0/+8
|\ | | | | Added include_count parameter to pluralize.
| * Modified String#pluralize to take an optional count parameter.Ryan Oblak2011-09-281-0/+8
| |
* | Fixed typos in active_support_core_extensions.textileRAHUL CHAUDHARI2011-10-111-2/+2
| |
* | More understandable warning in the local_constant_names section Dimitar Dimitrov2011-10-071-2/+2
|/ | | Rewrite the warning about local_constant_names in Ruby 1.8 to make it more understandable. Word ordering fixes in the same section.
* indentation fixesVijay Dev2011-09-211-2/+2
|
* remove unnecessary markupVijay Dev2011-09-201-6/+6
|
* Fixing incorrect notextile tagsVijay Dev2011-09-161-13/+13
|
* No more changelogs inside guidesVijay Dev2011-09-151-5/+0
|
* Fix for :instance_reader => false code exampleAndy Lindeman2011-09-101-1/+1
|
* Revert all the stuff to do with disallowing non-public methods for ↵Jon Leighton2011-08-251-24/+0
| | | | Module#delegate
* Merge branch 'master' of github.com:lifo/docrailsXavier Noria2011-08-161-0/+36
|\
| * document Array#append and Array#prepend methods in AS guideVijay Dev2011-08-161-0/+24
| |
| * Document Hash#extract!.Sebastian Martinez2011-08-151-0/+12
| |
* | AS guide: document in Module#delegate that the method must be public in the ↵Xavier Noria2011-08-161-1/+3
| | | | | | | | target
* | Document Object#public_sendJon Leighton2011-08-151-0/+24
|/
* Changed several instances of British English to be American EnglishEvan Farrar2011-07-231-1/+1
|
* documents the changes to String#blank? in the AS guideXavier Noria2011-07-201-1/+3
|
* Document the change to Array.wrap's behaviour that was made in ↵Jon Leighton2011-06-301-2/+2
| | | | b4d8c7d148c6b44eea6701687ca2a97df9088747
* Merge pull request #1648 from dlee/acronymsXavier Noria2011-06-241-1/+9
|\ | | | | Inflector support for acronyms (Issue #1366)