aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/array/wrap.rb
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #19799 from yui-knk/fix/wrap_doc2Arthur Nogueira Neves2015-04-191-3/+4
|\ | | | | [ci skip] Fix docs and guide about 'Array.wrap'
| * [ci skip] Fix docs and guide about 'Array.wrap'yui-knk2015-04-191-3/+4
| |
* | [ci skip] Replace `list` with `array`yui-knk2015-04-181-1/+1
|/
* documentation fixes for Array.wrap and AR::Validations::AssociatedValidatorHrvoje Šimić2013-04-171-6/+6
|
* Remove Reference to Ruby 1.8.7John Kelly2012-12-201-2/+1
|
* fix output messages - docs [ci skip]Francesco Rodriguez2012-10-221-1/+1
|
* Hash Syntax changes to 1.9 formatAvnerCohen2012-10-201-1/+1
|
* Fix indentation and update documentation for Array#wrap for Ruby 1.9Jo Liss2012-09-201-9/+10
|
* update AS/core_ext docs [ci skip]Francesco Rodriguez2012-09-121-2/+2
|
* remove docs related to ruby 1.8 from Array#wrapVasiliy Ermolovich2012-05-121-3/+0
|
* Array.wrap should follow Kernel#Array semantics when the object's to_ary is ↵Jon Leighton2011-06-301-1/+1
| | | | nil. In this case, the object should be wrapped.
* Fixed minor typo: 'Arraw' to 'Array'thoefer2011-06-111-1/+1
|
* Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵Santiago Pastorino2010-08-141-1/+1
| | | | 's/[ \t]*$//' -i {} \;)
* 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
* 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
* Merge remote branch 'mainstream/master'Pratik Naik2009-11-171-9/+4
|\ | | | | | | | | Conflicts: activesupport/lib/active_support/core_ext/hash/conversions.rb
| * Ruby 1.9.2: work around Array allowing method_missing for to_aryJeremy Kemper2009-11-131-4/+3
| |
| * Array.wrap(struct) needs to return the wrapped structYehuda Katz2009-10-281-12/+7
| |
| * This is all that's needed in 1.8.7+Yehuda Katz2009-10-281-10/+11
| |
* | explains difference between Array.wrap and Array()Xavier Noria2009-08-251-0/+9
|/
* * Introduce ActiveSupport.core_ext Integer, %w(conversions time etc)Jeremy Kemper2009-03-211-0/+18
* Convert some extension modules to simply reopening the class * Remove deprecated Float time extensions * Fold Base64 extension into ActiveSupport::Base64 since stdlib Base64 is gone