| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Ruby 1.9 compat: shadowed vars, kcode | Jeremy Kemper | 2007-12-15 | 1 | -2/+8 |
* | Ruby 1.9 compat: define Duration#== [chuyeow] | Jeremy Kemper | 2007-12-15 | 1 | -25/+35 |
* | Ruby 1.9 compat: normalize date and time xmlschema to match Ruby's formatting... | Jeremy Kemper | 2007-12-15 | 2 | -4/+11 |
* | Ruby 1.9 compat: prefer builtin String#starts_ and ends_with? if available [c... | Jeremy Kemper | 2007-12-15 | 4 | -8/+20 |
* | Bypass const_missing lookup for toplevel constants. Optimizes for Ruby 1.9 co... | Jeremy Kemper | 2007-12-15 | 1 | -7/+12 |
* | Added that Array#to_param calls to_param on all it's elements (closes #10473)... | David Heinemeier Hansson | 2007-12-14 | 1 | -2/+2 |
* | TimeZone#to_s uses UTC rather than GMT. References #1689. | Jeremy Kemper | 2007-12-10 | 1 | -1/+1 |
* | Ruby 1.9 compat: TimeZone avoids localtime conversion. References #1689 [Chu ... | Jeremy Kemper | 2007-12-10 | 1 | -3/+4 |
* | Missed commit. References #10395. | Jeremy Kemper | 2007-12-09 | 1 | -0/+14 |
* | Move #to_query methods where they ought to belong. Closes #10395 [Chu Yeow] | Jeremy Kemper | 2007-12-09 | 3 | -17/+17 |
* | to_sentence returns self[0].to_s instead of just self[0] for arrays of length... | Jeremy Kemper | 2007-12-09 | 1 | -1/+1 |
* | Refactor of Hash#symbolize_keys! to use Hash#replace. Closes #10420 [ReinH] | Rick Olson | 2007-12-08 | 1 | -7/+1 |
* | Fix HashWithIndifferentAccess#to_options! so it doesn't clear the options has... | Rick Olson | 2007-12-08 | 1 | -0/+1 |
* | Make ready for 2.0.1 | David Heinemeier Hansson | 2007-12-07 | 1 | -1/+1 |
* | Preparing for release shortly | David Heinemeier Hansson | 2007-12-06 | 1 | -3/+3 |
* | Fix incorrect superclass in documentation for alias_attribute. Closes #7171 [... | Marcel Molina | 2007-12-05 | 1 | -1/+1 |
* | Document that the delegate method can delegate to things other than just meth... | Marcel Molina | 2007-12-05 | 1 | -0/+20 |
* | Fix typos (closes #10378) | David Heinemeier Hansson | 2007-12-05 | 1 | -1/+1 |
* | Document Date conversions. Closes #10368 [chuyeow] | Michael Koziarski | 2007-12-05 | 1 | -4/+34 |
* | Enhance documentation for Active Support's Time Conversion functions. [rsanhe... | Michael Koziarski | 2007-12-05 | 1 | -3/+46 |
* | Don't escape forward slashes with String#to_json, our unicode encoding of < a... | Michael Koziarski | 2007-12-02 | 1 | -3/+2 |
* | Fix potential extra space in Array#to_sentence. Closes #10327 [kamal] | Michael Koziarski | 2007-12-02 | 1 | -6/+7 |
* | Prep for RC2 | David Heinemeier Hansson | 2007-11-29 | 1 | -1/+1 |
* | Added Array#from and Array#to that behaves just from String#from and String#t... | David Heinemeier Hansson | 2007-11-27 | 2 | -0/+30 |
* | Fix that empty collections should be treated as empty arrays regardless of wh... | David Heinemeier Hansson | 2007-11-25 | 1 | -13/+13 |
* | Honor Ruby's default calendar reform setting when creating DateTime objects v... | Geoff Buesing | 2007-11-24 | 4 | -4/+4 |
* | Change Time and DateTime #end_of_month to return last second of month instea... | Geoff Buesing | 2007-11-24 | 2 | -2/+2 |
* | Clarify Array#in_groups_of implementation, don't dup unless needed, only requ... | Jeremy Kemper | 2007-11-17 | 1 | -7/+20 |
* | Speedup String#blank? and remove some overspecified tests. | Jeremy Kemper | 2007-11-14 | 1 | -8/+2 |
* | Remove things that trip up RDoc | David Heinemeier Hansson | 2007-11-09 | 1 | -1/+1 |
* | Prepare versions for RC1 | David Heinemeier Hansson | 2007-11-09 | 1 | -2/+2 |
* | Standardize on using hyphens rather than colons to separate option names from... | Marcel Molina | 2007-11-06 | 2 | -4/+4 |
* | Add documentation for Hash#diff. Closes #9306 [tarmo] | Marcel Molina | 2007-11-06 | 1 | -0/+8 |
* | Cater for DST changes when converting Times to DateTimes. Closes #10068 [gbu... | Michael Koziarski | 2007-11-05 | 3 | -4/+13 |
* | Add new superclass_delegating_accessors. Similar to class inheritable attrib... | Michael Koziarski | 2007-10-29 | 2 | -0/+41 |
* | Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with... | Rick Olson | 2007-10-29 | 1 | -3/+4 |
* | Make Default Test work with both ruby 1.8.4 and 1.8.6. [DrMark] Closes #10003 | Michael Koziarski | 2007-10-26 | 1 | -1/+2 |
* | Fix JSON encoding/decoding bugs dealing with /'s. Closes #9990 [Rick, theama... | Rick Olson | 2007-10-26 | 2 | -10/+12 |
* | Introduce TestCase subclasses for testing rails applications allowing tests t... | Michael Koziarski | 2007-10-26 | 3 | -0/+17 |
* | Add an ignored options parameter to ActiveSupport::JSON::Variable#to_json to ... | Michael Koziarski | 2007-10-25 | 1 | -1/+1 |
* | Document Enumerable and Hash #to_json. Add test for hash with integer key. Cl... | Jeremy Kemper | 2007-10-24 | 2 | -0/+39 |
* | Hash#to_xml handles symbol values. Closes #9954. | Jeremy Kemper | 2007-10-23 | 1 | -0/+5 |
* | Hash#symbolize_keys behaves well with integer keys. Closes #9890. | Jeremy Kemper | 2007-10-16 | 1 | -3/+3 |
* | Don't assume ActiveSupport module is already defined | Jeremy Kemper | 2007-10-15 | 1 | -5/+7 |
* | Multibyte: String#slice supports regexp argument. Closes #9646. | Jeremy Kemper | 2007-10-15 | 1 | -0/+2 |
* | object.duplicable? returns true if object.dup is safe. False for nil, true, f... | Jeremy Kemper | 2007-10-15 | 1 | -0/+37 |
* | Time, Date and DateTime #advance accept :weeks option. Closes #9866. | Jeremy Kemper | 2007-10-13 | 3 | -3/+4 |
* | Fix Time#years_ago and #years_since from leap days. Closes #9865. | Jeremy Kemper | 2007-10-13 | 1 | -2/+2 |
* | Time and DateTime#advance accept :hours, :minutes, and :seconds options. Clos... | Jeremy Kemper | 2007-10-13 | 2 | -4/+8 |
* | Don't shadow local var with block var | Jeremy Kemper | 2007-10-13 | 1 | -1/+1 |