aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
Commit message (Expand)AuthorAgeFilesLines
* Added db:migrate:redo for rerunning existing migrations (closes #10431) [matt]David Heinemeier Hansson2007-12-141-1/+1
* TimeZone#to_s uses UTC rather than GMT. References #1689.Jeremy Kemper2007-12-103-2/+4
* Ruby 1.9 compat: TimeZone avoids localtime conversion. References #1689 [Chu ...Jeremy Kemper2007-12-102-4/+5
* Ruby 1.9 compat: File.exists\? -> File.exist\? en masse. References #1689 [Pr...Jeremy Kemper2007-12-101-2/+2
* Ruby 1.9 compat. References #1689 [Pratik Naik]Jeremy Kemper2007-12-103-5/+9
* More changelog updatesJeremy Kemper2007-12-101-2/+2
* More changelog updatesJeremy Kemper2007-12-101-4/+4
* Update Chu's name in changelogsJeremy Kemper2007-12-101-2/+2
* Missed commit. References #10395.Jeremy Kemper2007-12-091-0/+14
* Move #to_query methods where they ought to belong. Closes #10395 [Chu Yeow]Jeremy Kemper2007-12-093-17/+17
* to_sentence returns self[0].to_s instead of just self[0] for arrays of length...Jeremy Kemper2007-12-092-2/+4
* Refactor of Hash#symbolize_keys! to use Hash#replace. Closes #10420 [ReinH]Rick Olson2007-12-082-7/+5
* Fix HashWithIndifferentAccess#to_options! so it doesn't clear the options has...Rick Olson2007-12-083-0/+11
* Make ready for 2.0.1David Heinemeier Hansson2007-12-072-2/+2
* Preparing for release shortlyDavid Heinemeier Hansson2007-12-062-7/+4
* Fix incorrect superclass in documentation for alias_attribute. Closes #7171 [...Marcel Molina2007-12-051-1/+1
* Document that the delegate method can delegate to things other than just meth...Marcel Molina2007-12-051-0/+20
* Fix typos (closes #10378)David Heinemeier Hansson2007-12-052-2/+2
* Document Date conversions. Closes #10368 [chuyeow]Michael Koziarski2007-12-051-4/+34
* Enhance documentation for Active Support's Time Conversion functions. [rsanhe...Michael Koziarski2007-12-051-3/+46
* Don't escape forward slashes with String#to_json, our unicode encoding of < a...Michael Koziarski2007-12-022-4/+3
* Fix potential extra space in Array#to_sentence. Closes #10327 [kamal]Michael Koziarski2007-12-022-6/+13
* Prep for RC2David Heinemeier Hansson2007-11-292-2/+2
* Added Array#from and Array#to that behaves just from String#from and String#t...David Heinemeier Hansson2007-11-274-0/+46
* Fix that empty collections should be treated as empty arrays regardless of wh...David Heinemeier Hansson2007-11-253-13/+26
* Honor Ruby's default calendar reform setting when creating DateTime objects v...Geoff Buesing2007-11-248-5/+19
* Change Time and DateTime #end_of_month to return last second of month instea...Geoff Buesing2007-11-245-10/+10
* Clarify Array#in_groups_of implementation, don't dup unless needed, only requ...Jeremy Kemper2007-11-171-7/+20
* Speedup String#blank? and remove some overspecified tests.Jeremy Kemper2007-11-143-47/+8
* Remove things that trip up RDocDavid Heinemeier Hansson2007-11-091-1/+1
* Prepare versions for RC1David Heinemeier Hansson2007-11-091-2/+2
* Standardize on using hyphens rather than colons to separate option names from...Marcel Molina2007-11-062-4/+4
* Add documentation for Hash#diff. Closes #9306 [tarmo]Marcel Molina2007-11-062-0/+10
* Cater for DST changes when converting Times to DateTimes. Closes #10068 [gbu...Michael Koziarski2007-11-056-10/+43
* Add new superclass_delegating_accessors. Similar to class inheritable attrib...Michael Koziarski2007-10-294-0/+148
* Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with...Rick Olson2007-10-293-5/+8
* Make sure default_test is tested for ActiveSupport::TestCase tooMichael Koziarski2007-10-261-3/+5
* Make Default Test work with both ruby 1.8.4 and 1.8.6. [DrMark] Closes #10003Michael Koziarski2007-10-262-1/+8
* Fix JSON encoding/decoding bugs dealing with /'s. Closes #9990 [Rick, theama...Rick Olson2007-10-265-19/+25
* Introduce TestCase subclasses for testing rails applications allowing tests t...Michael Koziarski2007-10-265-0/+24
* Add an ignored options parameter to ActiveSupport::JSON::Variable#to_json to ...Michael Koziarski2007-10-251-1/+1
* Document Enumerable and Hash #to_json. Add test for hash with integer key. Cl...Jeremy Kemper2007-10-244-0/+42
* Hash#to_xml handles symbol values. Closes #9954.Jeremy Kemper2007-10-233-2/+12
* Hash#symbolize_keys behaves well with integer keys. Closes #9890.Jeremy Kemper2007-10-163-3/+11
* Don't assume ActiveSupport module is already definedJeremy Kemper2007-10-151-5/+7
* Multibyte: String#slice supports regexp argument. Closes #9646.Jeremy Kemper2007-10-153-0/+9
* Add a time to duplicable testsJeremy Kemper2007-10-151-1/+1
* object.duplicable? returns true if object.dup is safe. False for nil, true, f...Jeremy Kemper2007-10-153-0/+61
* Time, Date and DateTime #advance accept :weeks option. Closes #9866.Jeremy Kemper2007-10-137-7/+22
* Fix Time#years_ago and #years_since from leap days. Closes #9865.Jeremy Kemper2007-10-133-2/+6