aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
Commit message (Expand)AuthorAgeFilesLines
* Multibyte: String#chars uses passthrough handler for Ruby 1.9Jeremy Kemper2007-12-211-1/+1
* Hash#symbolize_keys skips keys that can't be symbolized. Closes #10500.Jeremy Kemper2007-12-201-1/+1
* Ruby 1.9 compat: join the buffer array explicitly rather than relying on to_s...Jeremy Kemper2007-12-191-1/+1
* Missed commit. References #10554.Jeremy Kemper2007-12-181-0/+17
* Ruby 1.9 compat: move from the deprecated Base64 module to ActiveSupport::Bas...Jeremy Kemper2007-12-182-2/+3
* Docfix (closes #10369) [revans]David Heinemeier Hansson2007-12-171-1/+17
* Prepare for 2.0.2 releaseDavid Heinemeier Hansson2007-12-161-1/+1
* Revert const_missing bypass in favor of Duration constant lookup tweakJeremy Kemper2007-12-152-6/+1
* Ruby 1.9 compat: 'a'.ord == 'a'[0]Jeremy Kemper2007-12-151-2/+7
* Ruby 1.9 compat: shadowed vars, kcodeJeremy Kemper2007-12-151-2/+8
* Ruby 1.9 compat: define Duration#== [chuyeow]Jeremy Kemper2007-12-151-25/+35
* Ruby 1.9 compat: normalize date and time xmlschema to match Ruby's formatting...Jeremy Kemper2007-12-152-4/+11
* Ruby 1.9 compat: prefer builtin String#starts_ and ends_with? if available [c...Jeremy Kemper2007-12-154-8/+20
* Bypass const_missing lookup for toplevel constants. Optimizes for Ruby 1.9 co...Jeremy Kemper2007-12-151-7/+12
* Added that Array#to_param calls to_param on all it's elements (closes #10473)...David Heinemeier Hansson2007-12-141-2/+2
* TimeZone#to_s uses UTC rather than GMT. References #1689.Jeremy Kemper2007-12-101-1/+1
* Ruby 1.9 compat: TimeZone avoids localtime conversion. References #1689 [Chu ...Jeremy Kemper2007-12-101-3/+4
* 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-091-1/+1
* Refactor of Hash#symbolize_keys! to use Hash#replace. Closes #10420 [ReinH]Rick Olson2007-12-081-7/+1
* Fix HashWithIndifferentAccess#to_options! so it doesn't clear the options has...Rick Olson2007-12-081-0/+1
* Make ready for 2.0.1David Heinemeier Hansson2007-12-071-1/+1
* Preparing for release shortlyDavid Heinemeier Hansson2007-12-061-3/+3
* 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-051-1/+1
* 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-021-3/+2
* Fix potential extra space in Array#to_sentence. Closes #10327 [kamal]Michael Koziarski2007-12-021-6/+7
* Prep for RC2David Heinemeier Hansson2007-11-291-1/+1
* Added Array#from and Array#to that behaves just from String#from and String#t...David Heinemeier Hansson2007-11-272-0/+30
* Fix that empty collections should be treated as empty arrays regardless of wh...David Heinemeier Hansson2007-11-251-13/+13
* Honor Ruby's default calendar reform setting when creating DateTime objects v...Geoff Buesing2007-11-244-4/+4
* Change Time and DateTime #end_of_month to return last second of month instea...Geoff Buesing2007-11-242-2/+2
* 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-141-8/+2
* 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-061-0/+8
* Cater for DST changes when converting Times to DateTimes. Closes #10068 [gbu...Michael Koziarski2007-11-053-4/+13
* Add new superclass_delegating_accessors. Similar to class inheritable attrib...Michael Koziarski2007-10-292-0/+41
* Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with...Rick Olson2007-10-291-3/+4
* Make Default Test work with both ruby 1.8.4 and 1.8.6. [DrMark] Closes #10003Michael Koziarski2007-10-261-1/+2
* Fix JSON encoding/decoding bugs dealing with /'s. Closes #9990 [Rick, theama...Rick Olson2007-10-262-10/+12
* Introduce TestCase subclasses for testing rails applications allowing tests t...Michael Koziarski2007-10-264-0/+19
* 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-242-0/+39