aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
Commit message (Collapse)AuthorAgeFilesLines
...
* | Revert "If a file is in the load path, require it without its full path (in ↵José Valim2010-08-041-7/+2
| | | | | | | | | | | | | | | | more places)" Caused failures in ActionMailer test suite. This reverts commit 991cd59a225b90ab1ba31867810b8fc0942713eb.
* | If a file is in the load path, require it without its full path (in more places)wycats2010-08-041-2/+7
| |
* | require_dependency should require using the normal mechanism if possible to ↵wycats2010-08-041-7/+15
|/ | | | avoid double-requires
* Bring returning back to ease migration.José Valim2010-08-022-0/+44
|
* Add missing require in ActiveSupport::HashWithIndifferentAccess [#5189 ↵Chris Hoffman2010-08-021-0/+1
| | | | | | state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* explains Array.wrap directly, rather by comparison with Kernel#Array which ↵Xavier Noria2010-08-011-1/+22
| | | | is too obscure, leaves the comparison to document the differences, and adds a comparison with the related idiom that uses the splat operator
* AS gem doesn't depend on nokogiri so shows a nicer error if users haven't ↵Santiago Pastorino2010-07-302-3/+13
| | | | installed
* Make options an attr_readerSantiago Pastorino2010-07-301-6/+1
|
* Add another missing require in 'active_support/inflector/inflections'Carl Lerche2010-07-291-0/+1
|
* Merge remote branch 'rails/master'Xavier Noria2010-07-3012-72/+78
|\
| * edit pass to apply API guideline wrt the use of "# =>" in example codeXavier Noria2010-07-307-63/+65
| |
| * Add a missing require in 'active_support/core_ext/string/inflections'Carl Lerche2010-07-291-0/+1
| |
| * removing unused variableNeeraj Singh2010-07-281-2/+0
| |
| * adds test coverage for edge-cases of Array.wrap, and better documentation ↵Xavier Noria2010-07-281-4/+9
| | | | | | | | for how it differs from Kernel#Array
| * Prep for RCDavid Heinemeier Hansson2010-07-261-1/+1
| |
| * fixing space errorsAaron Patterson2010-07-261-2/+2
| |
* | Adding documentation regarding lazy_load_hooksNeeraj Singh2010-07-291-1/+20
| |
* | itsy bitsy changes to documentationNeeraj Singh2010-07-281-13/+13
| |
* | More documentation to class_attribute.José Valim2010-07-281-11/+24
| |
* | editing the documentation regarding :race_condition_ttl and :expires_in ↵Neeraj Singh2010-07-281-22/+23
| | | | | | | | option in AS cache
* | editing a sentenceNeeraj Singh2010-07-281-1/+1
| |
* | adding comment specifying that cattr_accessor also supports instance_write ↵Neeraj Singh2010-07-281-0/+10
| | | | | | | | and instance_rader option
* | clarifying the instance_write option with an exampleNeeraj Singh2010-07-281-1/+5
| |
* | adding some comments to cattr_accessor methodNeeraj Singh2010-07-281-0/+6
| |
* | updating description of how class_attribute worksNeeraj Singh2010-07-281-0/+5
| |
* | clarifying description for class_attribute methodNeeraj Singh2010-07-271-2/+2
| |
* | polishing commentsNeeraj Singh2010-07-262-8/+8
| |
* | making comments meaningful by correcting, adding and pruningNeeraj Singh2010-07-263-14/+13
| |
* | making comments have a consistent theme of narrativeNeeraj Singh2010-07-261-26/+22
|/
* Override new on proxy objects so that they never wrap nil or false.Leigh Caplan2010-07-261-0/+7
|
* XmlMini.rename_key emits valid xml with dasherizeBernerd Schaefer2010-07-261-1/+5
| | | | | | | | This resolves issues for libraries which use '_' prefixed keys in their attributes hash, such as Mongoid. A key like "_id" or "_type" will no longer be converted to "<-id>" and "<-type>". Signed-off-by: wycats <wycats@gmail.com>
* Fix a bug where requires inside of autoloads were being added to the ↵wycats2010-07-261-5/+12
| | | | autoloaded_constants list, causing mayhem. [#5165 state:resolved]
* fisting warningAaron Patterson2010-07-251-1/+1
|
* Merge remote branch 'docrails/master'Xavier Noria2010-07-264-10/+11
|\
| * making comments sentence more conciseNeeraj Singh2010-07-231-2/+2
| |
| * fixing typoNeeraj Singh2010-07-231-1/+1
| |
| * adding proper markup in commentsNeeraj Singh2010-07-231-2/+2
| |
| * shortening the sentences and removing fluffNeeraj Singh2010-07-231-4/+5
| |
| * reformatting sentenceNeeraj Singh2010-07-231-1/+1
| |
* | Object#returning removedSantiago Pastorino2010-07-253-46/+0
| | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* | Revert the previous three commits.José Valim2010-07-252-20/+7
| | | | | | | | | | | | * AS::Notifications#instrument should not measure anything, it is not its responsibility; * Adding another argument to AS::Notifications#instrument API needs to be properly discussed;
* | use a hash to collect optional statistics about the instrumentationAaron Patterson2010-07-252-7/+20
| |
* | Change returning with tapSantiago Pastorino2010-07-251-1/+0
| | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* | Get rid of instrumenter.elapsed.José Valim2010-07-241-9/+3
| |
* | make a throwaway value equals to _ to avoid warningsSantiago Pastorino2010-07-241-1/+1
| | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* | Removes unused varsSantiago Pastorino2010-07-245-11/+10
| | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* | Don't shadow outer local variablesSantiago Pastorino2010-07-221-4/+4
| |
* | Performance optimizations to handle cases of instrumentors that are not ↵Carlhuda2010-07-223-6/+31
|/ | | | listened to. Also, fix a possible concurrency issue.
* camelize and underscore are sort of inverse of each other, but not in a ↵Xavier Noria2010-07-221-1/+11
| | | | mathematical sense [#5174 state:resolved]
* Hash#to_param is doesn't use sort anymore, some tests added for Hash#to_paramSantiago Pastorino2010-07-221-1/+1
|