aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
Commit message (Expand)AuthorAgeFilesLines
* Ruby 1.9 compat: 'a'.ord == 'a'[0]Jeremy Kemper2007-12-151-0/+5
* Ruby 1.9 compat: shadowed vars, kcodeJeremy Kemper2007-12-153-10/+26
* Ruby 1.9 compat: define Duration#== [chuyeow]Jeremy Kemper2007-12-152-2/+0
* Ruby 1.9 compat: normalize date and time xmlschema to match Ruby's formatting...Jeremy Kemper2007-12-151-4/+3
* Ruby 1.9 compat: prefer builtin String#starts_ and ends_with? if available [c...Jeremy Kemper2007-12-151-1/+9
* Added that Array#to_param calls to_param on all it's elements (closes #10473)...David Heinemeier Hansson2007-12-141-0/+10
* 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-1/+1
* 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
* to_sentence returns self[0].to_s instead of just self[0] for arrays of length...Jeremy Kemper2007-12-091-1/+3
* Fix HashWithIndifferentAccess#to_options! so it doesn't clear the options has...Rick Olson2007-12-081-0/+8
* Fix typos (closes #10378)David Heinemeier Hansson2007-12-051-1/+1
* Don't escape forward slashes with String#to_json, our unicode encoding of < a...Michael Koziarski2007-12-021-1/+1
* Fix potential extra space in Array#to_sentence. Closes #10327 [kamal]Michael Koziarski2007-12-021-0/+6
* Added Array#from and Array#to that behaves just from String#from and String#t...David Heinemeier Hansson2007-11-271-0/+14
* Fix that empty collections should be treated as empty arrays regardless of wh...David Heinemeier Hansson2007-11-251-0/+11
* Honor Ruby's default calendar reform setting when creating DateTime objects v...Geoff Buesing2007-11-243-1/+13
* Change Time and DateTime #end_of_month to return last second of month instea...Geoff Buesing2007-11-242-8/+6
* Speedup String#blank? and remove some overspecified tests.Jeremy Kemper2007-11-141-39/+4
* Cater for DST changes when converting Times to DateTimes. Closes #10068 [gbu...Michael Koziarski2007-11-053-6/+30
* Add new superclass_delegating_accessors. Similar to class inheritable attrib...Michael Koziarski2007-10-291-0/+105
* Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with...Rick Olson2007-10-291-2/+2
* 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-261-0/+6
* Fix JSON encoding/decoding bugs dealing with /'s. Closes #9990 [Rick, theama...Rick Olson2007-10-262-9/+11
* Document Enumerable and Hash #to_json. Add test for hash with integer key. Cl...Jeremy Kemper2007-10-241-0/+1
* Hash#to_xml handles symbol values. Closes #9954.Jeremy Kemper2007-10-231-2/+5
* Hash#symbolize_keys behaves well with integer keys. Closes #9890.Jeremy Kemper2007-10-161-0/+6
* Multibyte: String#slice supports regexp argument. Closes #9646.Jeremy Kemper2007-10-151-0/+5
* 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-151-0/+22
* Time, Date and DateTime #advance accept :weeks option. Closes #9866.Jeremy Kemper2007-10-133-4/+16
* Fix Time#years_ago and #years_since from leap days. Closes #9865.Jeremy Kemper2007-10-131-0/+2
* Time and DateTime#advance accept :hours, :minutes, and :seconds options. Clos...Jeremy Kemper2007-10-132-3/+25
* Fix Date#years_ago and #years_since from leap days. Closes #9864.Jeremy Kemper2007-10-132-0/+4
* Refactor Time and Date#months_since and #months_ago to use #advance. Closes #...Jeremy Kemper2007-10-133-0/+12
* Style update for new Range extensionsJeremy Kemper2007-10-091-6/+5
* * Add Range#overlaps?(range), Range#include?(range), and Range#step without a...Michael Koziarski2007-10-081-0/+51
* Correct BufferedLogger#level? checks. Closes #9806.Jeremy Kemper2007-10-071-0/+7
* String#to_xs uses the fast_xs extension if available for Builder speedup.Jeremy Kemper2007-10-071-7/+9
* Disambiguate Time, Date, and DateTime#to_json formatting. Closes #9750.Jeremy Kemper2007-10-051-3/+3
* Disabling auto_flushing still flushes when the buffer hits a maximum size, as...Jeremy Kemper2007-10-041-0/+13
* Hash#to_json takes :only or :except options to specific or omit certain hash ...Jeremy Kemper2007-10-041-0/+21
* Some platforms include colon in timezone offset, some don't. References #9744.Jeremy Kemper2007-10-032-6/+6
* BufferedLogger#auto_flushing = N flushes the log every N messages. Buffers wi...Jeremy Kemper2007-10-031-7/+34
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-022-5/+11
* Fixed Date#xmlschema for dates outside the range of what can be created with ...David Heinemeier Hansson2007-10-012-2/+23
* Fixed JSON encoding to use quoted keys according to the JSON standard (closes...David Heinemeier Hansson2007-09-301-29/+5
* Ruby 1.9 compat for hash_ext_testJeremy Kemper2007-09-291-1/+1