| Commit message (Expand) | Author | Age | Files | Lines |
* | * Add Range#overlaps?(range), Range#include?(range), and Range#step without a... | Michael Koziarski | 2007-10-08 | 1 | -0/+2 |
* | Correct BufferedLogger#level? checks. Closes #9806. | Jeremy Kemper | 2007-10-07 | 1 | -0/+2 |
* | Reference current fast_xs URL | Jeremy Kemper | 2007-10-07 | 1 | -1/+1 |
* | String#to_xs uses the fast_xs extension if available for Builder speedup. | Jeremy Kemper | 2007-10-07 | 1 | -0/+2 |
* | Introduce BasicObject as Builder::BlankSlate for Ruby 1.9 forward compatibility. | Jeremy Kemper | 2007-10-07 | 1 | -0/+2 |
* | Unbundle Builder in favor of a gem dependency. | Jeremy Kemper | 2007-10-07 | 1 | -0/+2 |
* | Disambiguate Time, Date, and DateTime#to_json formatting. Closes #9750. | Jeremy Kemper | 2007-10-05 | 1 | -0/+2 |
* | Disabling auto_flushing still flushes when the buffer hits a maximum size, as... | Jeremy Kemper | 2007-10-04 | 1 | -1/+1 |
* | Hash#to_json takes :only or :except options to specific or omit certain hash ... | Jeremy Kemper | 2007-10-04 | 1 | -1/+3 |
* | BufferedLogger#auto_flushing = N flushes the log every N messages. Buffers wi... | Jeremy Kemper | 2007-10-03 | 1 | -0/+2 |
* | Fixed Date#xmlschema for dates outside the range of what can be created with ... | David Heinemeier Hansson | 2007-10-01 | 1 | -0/+5 |
* | Fixed that La Paz was included in -25200 and -14400 offsets when it should on... | David Heinemeier Hansson | 2007-09-30 | 1 | -0/+2 |
* | Fixed JSON encoding to use quoted keys according to the JSON standard (closes... | David Heinemeier Hansson | 2007-09-30 | 1 | -0/+2 |
* | Updated CHANGELOGs. They need to be filtered for duplicates | David Heinemeier Hansson | 2007-09-29 | 1 | -7/+18 |
* | BufferedLogger#add converts the message to a string. Closes #9724. | Jeremy Kemper | 2007-09-28 | 1 | -1/+1 |
* | Alias Object#send to send! for Ruby 1.9 forward compatibility. | Jeremy Kemper | 2007-09-27 | 1 | -0/+2 |
* | Backport Object#instance_variable_defined? for Ruby < 1.8.6. | Jeremy Kemper | 2007-09-27 | 1 | -0/+2 |
* | BufferedLogger#add doesn't modify the message argument. Closes #9702. | Jeremy Kemper | 2007-09-27 | 1 | -0/+2 |
* | Added ActiveSupport::BufferedLogger as a duck-typing alternative (albeit with... | David Heinemeier Hansson | 2007-09-25 | 1 | -0/+2 |
* | Object#instance_exec produces fewer garbage methods. | Jeremy Kemper | 2007-09-24 | 1 | -0/+2 |
* | Decode json strings as Dates/Times if they're using a YAML-compatible format.... | Rick Olson | 2007-09-24 | 1 | -0/+2 |
* | Dont need all of test/unit (closes #6673) [zenspider/josh] | David Heinemeier Hansson | 2007-09-23 | 1 | -0/+2 |
* | Object.subclasses_of includes anonymous subclasses. | Jeremy Kemper | 2007-09-23 | 1 | -0/+2 |
* | Fixed that pluralizing an empty string should return the same empty string, n... | David Heinemeier Hansson | 2007-09-22 | 1 | -0/+2 |
* | Added call to inspect on non-string classes for the logger (closes #8533) [co... | David Heinemeier Hansson | 2007-09-22 | 1 | -0/+2 |
* | Deprecation: remove deprecated :mday option from Time, Date, and DateTime#cha... | Jeremy Kemper | 2007-09-18 | 1 | -0/+2 |
* | Fix JSON decoder with nested quotes and commas. Closes #9579. | Jeremy Kemper | 2007-09-17 | 1 | -0/+2 |
* | Hash#to_xml doesn't double-unescape. Closes #8806. | Jeremy Kemper | 2007-09-17 | 1 | -0/+2 |
* | Added Array#rand (closes #9170) [norbert] | David Heinemeier Hansson | 2007-09-15 | 1 | -0/+6 |
* | Deprecation: removed Reloadable. | Jeremy Kemper | 2007-09-14 | 1 | -0/+2 |
* | Make the utf-handler return the correct value for non-matching regular expres... | Michael Koziarski | 2007-08-05 | 1 | -0/+2 |
* | Add ljust, rjust and center to utf8-handler. Closes #9165 [manfred] | Michael Koziarski | 2007-08-05 | 1 | -0/+2 |
* | Fix Time#advance bug when trying to advance a year from leap day. Closes #86... | Rick Olson | 2007-08-03 | 1 | -0/+2 |
* | Add support for []= on ActiveSupport::Multibyte::Chars. Closes #9142. [ewan, ... | Marcel Molina | 2007-07-31 | 1 | -0/+2 |
* | Added Array#extract_options! to encapsulate the pattern of getting an options... | David Heinemeier Hansson | 2007-07-24 | 1 | -0/+2 |
* | Let alias_attribute work with attributes with initial capital letters (legacy... | Michael Koziarski | 2007-07-19 | 1 | -0/+2 |
* | Added Hash#except which is the inverse of Hash#slice -- return the hash excep... | David Heinemeier Hansson | 2007-07-09 | 1 | -0/+2 |
* | Added support for pluralization with a different starting letter than the sin... | David Heinemeier Hansson | 2007-06-23 | 1 | -0/+2 |
* | Demote Hash#to_xml to use XmlSimple#xml_in_string so it can't read files or s... | Jeremy Kemper | 2007-06-23 | 1 | -0/+2 |
* | Ensure clean_logger fixes are 1.8.2 compatible [mislav] Closes #8396 | Michael Koziarski | 2007-06-22 | 1 | -0/+2 |
* | Added proper handling of arrays. Closes #8537 [hasmanyjosh] | Rick Olson | 2007-06-21 | 1 | -0/+22 |
* | Improve Time and Date test coverage. Closes #8646. | Jeremy Kemper | 2007-06-14 | 1 | -0/+2 |
* | revert [6924] | Rick Olson | 2007-06-05 | 1 | -23/+0 |
* | Add Date#since, ago, beginning_of_day, and end_of_day. Date + seconds works n... | Jeremy Kemper | 2007-06-04 | 1 | -0/+2 |
* | String#to_time overflows to DateTime. Add String#to_datetime. Closes #8572. | Jeremy Kemper | 2007-06-04 | 1 | -0/+2 |
* | Date.yesterday and .tomorrow. Closes #8571. | Jeremy Kemper | 2007-06-04 | 1 | -0/+2 |
* | Readable Date and DateTime#inspect. Closes #8570. | Jeremy Kemper | 2007-06-04 | 1 | -0/+2 |
* | Added proper handling of arrays (closes #8537) [hasmanyjosh] | David Heinemeier Hansson | 2007-06-01 | 1 | -0/+23 |
* | Move common DateTime calculations to Date. Closes #8536. | Jeremy Kemper | 2007-06-01 | 1 | -0/+2 |
* | Added Date#change (like Time#change) [DHH] | David Heinemeier Hansson | 2007-05-31 | 1 | -0/+2 |