| Commit message (Expand) | Author | Age | Files | Lines |
* | Ruby 1.9 compat: don't use obsolete ParseDate | Jeremy Kemper | 2007-12-27 | 1 | -4/+4 |
* | Move rubyforge task require | Jeremy Kemper | 2007-12-27 | 1 | -1/+1 |
* | Ruby 1.9 compat: dependencies uses Module#local_constant_names. References #1... | Jeremy Kemper | 2007-12-22 | 2 | -3/+9 |
* | Ruby 1.9: use enumerator for blockless Range#step | Jeremy Kemper | 2007-12-21 | 1 | -6/+16 |
* | Multibyte: skip String#each_char test for Ruby 1.9 | Jeremy Kemper | 2007-12-21 | 1 | -8/+9 |
* | Multibyte: String#chars returns self for Ruby 1.9 | Jeremy Kemper | 2007-12-21 | 5 | -43/+75 |
* | Multibyte: String#chars uses passthrough handler for Ruby 1.9 | Jeremy Kemper | 2007-12-21 | 5 | -15/+21 |
* | Hash#symbolize_keys skips keys that can't be symbolized. Closes #10500. | Jeremy Kemper | 2007-12-20 | 3 | -4/+12 |
* | Ruby 1.9 compat: join the buffer array explicitly rather than relying on to_s... | Jeremy Kemper | 2007-12-19 | 1 | -1/+1 |
* | RubyGems 0.9.5 compat: always set the gem platform | Jeremy Kemper | 2007-12-19 | 1 | -0/+1 |
* | Missed commit. References #10554. | Jeremy Kemper | 2007-12-18 | 1 | -0/+17 |
* | Ruby 1.9 compat: move from the deprecated Base64 module to ActiveSupport::Bas... | Jeremy Kemper | 2007-12-18 | 3 | -3/+4 |
* | Docfix (closes #10369) [revans] | David Heinemeier Hansson | 2007-12-17 | 1 | -1/+17 |
* | Prepare for 2.0.2 release | David Heinemeier Hansson | 2007-12-16 | 1 | -1/+1 |
* | Update changelog for Ruby 1.9 compat patches | Jeremy Kemper | 2007-12-15 | 1 | -1/+1 |
* | Revert const_missing bypass in favor of Duration constant lookup tweak | Jeremy Kemper | 2007-12-15 | 3 | -6/+3 |
* | More changelog updates | Jeremy Kemper | 2007-12-15 | 1 | -6/+6 |
* | Ruby 1.9 compat: 'a'.ord == 'a'[0] | Jeremy Kemper | 2007-12-15 | 2 | -2/+12 |
* | Ruby 1.9 compat: shadowed vars, kcode | Jeremy Kemper | 2007-12-15 | 4 | -12/+34 |
* | Ruby 1.9 compat: define Duration#== [chuyeow] | Jeremy Kemper | 2007-12-15 | 3 | -27/+35 |
* | Ruby 1.9 compat: normalize date and time xmlschema to match Ruby's formatting... | Jeremy Kemper | 2007-12-15 | 3 | -8/+14 |
* | Ruby 1.9 compat: prefer builtin String#starts_ and ends_with? if available [c... | Jeremy Kemper | 2007-12-15 | 5 | -9/+29 |
* | Bypass const_missing lookup for toplevel constants. Optimizes for Ruby 1.9 co... | Jeremy Kemper | 2007-12-15 | 1 | -7/+12 |
* | We love whitespace | David Heinemeier Hansson | 2007-12-14 | 1 | -0/+1 |
* | Added that Array#to_param calls to_param on all it's elements (closes #10473)... | David Heinemeier Hansson | 2007-12-14 | 2 | -2/+12 |
* | Added db:migrate:redo for rerunning existing migrations (closes #10431) [matt] | David Heinemeier Hansson | 2007-12-14 | 1 | -1/+1 |
* | TimeZone#to_s uses UTC rather than GMT. References #1689. | Jeremy Kemper | 2007-12-10 | 3 | -2/+4 |
* | Ruby 1.9 compat: TimeZone avoids localtime conversion. References #1689 [Chu ... | Jeremy Kemper | 2007-12-10 | 2 | -4/+5 |
* | Ruby 1.9 compat: File.exists\? -> File.exist\? en masse. References #1689 [Pr... | Jeremy Kemper | 2007-12-10 | 1 | -2/+2 |
* | Ruby 1.9 compat. References #1689 [Pratik Naik] | Jeremy Kemper | 2007-12-10 | 3 | -5/+9 |
* | More changelog updates | Jeremy Kemper | 2007-12-10 | 1 | -2/+2 |
* | More changelog updates | Jeremy Kemper | 2007-12-10 | 1 | -4/+4 |
* | Update Chu's name in changelogs | Jeremy Kemper | 2007-12-10 | 1 | -2/+2 |
* | 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 | 2 | -2/+4 |
* | Refactor of Hash#symbolize_keys! to use Hash#replace. Closes #10420 [ReinH] | Rick Olson | 2007-12-08 | 2 | -7/+5 |
* | Fix HashWithIndifferentAccess#to_options! so it doesn't clear the options has... | Rick Olson | 2007-12-08 | 3 | -0/+11 |
* | Make ready for 2.0.1 | David Heinemeier Hansson | 2007-12-07 | 2 | -2/+2 |
* | Preparing for release shortly | David Heinemeier Hansson | 2007-12-06 | 2 | -7/+4 |
* | 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 | 2 | -2/+2 |
* | 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 | 2 | -4/+3 |
* | Fix potential extra space in Array#to_sentence. Closes #10327 [kamal] | Michael Koziarski | 2007-12-02 | 2 | -6/+13 |
* | Prep for RC2 | David Heinemeier Hansson | 2007-11-29 | 2 | -2/+2 |
* | Added Array#from and Array#to that behaves just from String#from and String#t... | David Heinemeier Hansson | 2007-11-27 | 4 | -0/+46 |
* | Fix that empty collections should be treated as empty arrays regardless of wh... | David Heinemeier Hansson | 2007-11-25 | 3 | -13/+26 |