Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Simple examples for require profiling | Jeremy Kemper | 2009-05-13 | 1 | -0/+16 |
| | |||||
* | Cherry-pick core extensions | Jeremy Kemper | 2009-05-13 | 5 | -1/+13 |
| | |||||
* | Defer rake/contrib/sshpublisher require so basic tasks don't need the full ↵ | Jeremy Kemper | 2009-05-07 | 1 | -1/+2 |
| | | | | rake gem | ||||
* | Fix tests on 1.8.6 | Jeremy Kemper | 2009-05-06 | 2 | -0/+2 |
| | |||||
* | Cherry pick Active Support dependencies. Autoload. | Jeremy Kemper | 2009-05-06 | 11 | -81/+100 |
| | |||||
* | Remove superfluous CGI require | Jeremy Kemper | 2009-05-05 | 1 | -1/+0 |
| | |||||
* | Prefer sibling Active Support | Jeremy Kemper | 2009-05-05 | 1 | -9/+3 |
| | |||||
* | Fix differing rails_to_json arity | Jeremy Kemper | 2009-04-26 | 1 | -3/+5 |
| | |||||
* | * Add pluggable JSON backends with support for the JSON gem. [rick] | rick | 2009-04-23 | 1 | -1/+4 |
| | | | | | | | | | | | | | | Example: ActiveSupport::JSON.backend = "JSONGem" All internal Rails JSON encoding is now handled by ActiveSupport::JSON.encode(). Use of #to_json is not recommended, as it may clash with other libraries that overwrite it. However, you can recover Rails specific functionality if you really want to use #to_json. gem 'json' ActiveSupport::JSON.backend = "JSONGem" class ActiveRecord::Base alias to_json rails_to_json end | ||||
* | Opt in to JSON | Jeremy Kemper | 2009-04-22 | 1 | -0/+2 |
| | |||||
* | No more free lunch | Jeremy Kemper | 2009-04-22 | 1 | -0/+1 |
| | |||||
* | Merge docrails | Pratik Naik | 2009-03-24 | 4 | -36/+37 |
| | |||||
* | Prepare for final 2.3 release | David Heinemeier Hansson | 2009-03-15 | 3 | -9/+4 |
| | |||||
* | Strip invalid leading whitespace error uncovered by nokogiri | Jeremy Kemper | 2009-03-10 | 1 | -1/+1 |
| | |||||
* | Ruby 1.9 compat: rename deprecated assert_raises to assert_raise. | Jeremy Kemper | 2009-03-08 | 2 | -14/+14 |
| | | | | [#1617 state:resolved] | ||||
* | Ensure Active Support is loaded locally rather than from RubyGems. [#1620 ↵ | Jeremy Kemper | 2009-03-08 | 1 | -0/+1 |
| | | | | state:committed] | ||||
* | Release RC2 today | David Heinemeier Hansson | 2009-03-05 | 1 | -1/+1 |
| | |||||
* | So it didnt happen yesterday, but very soon! Just need the final details ↵ | David Heinemeier Hansson | 2009-02-28 | 1 | -1/+1 |
| | | | | ironed out | ||||
* | Prep for RC2 later today | David Heinemeier Hansson | 2009-02-27 | 3 | -2/+7 |
| | |||||
* | Handle either error string or array | Jeremy Kemper | 2009-02-06 | 1 | -1/+1 |
| | |||||
* | Fix example and exception message | Jeremy Kemper | 2009-02-06 | 1 | -2/+2 |
| | |||||
* | Work around mock request hashing problem on 1.9 and jruby | Jeremy Kemper | 2009-02-06 | 1 | -42/+24 |
| | |||||
* | Prefer tap to returning | Jeremy Kemper | 2009-02-06 | 2 | -9/+8 |
| | |||||
* | Add sibling AS to load path for testing to ensure gems aren't used | Jeremy Kemper | 2009-02-06 | 1 | -0/+2 |
| | |||||
* | Require rubygems | Jeremy Kemper | 2009-02-03 | 1 | -1/+1 |
| | |||||
* | Bump mocha requirement for Ruby 1.9 compat. Remove uses_mocha. | Jeremy Kemper | 2009-02-03 | 2 | -22/+16 |
| | |||||
* | Mark CHANGELOGs for release | David Heinemeier Hansson | 2009-02-01 | 1 | -0/+5 |
| | |||||
* | Improve exception handling when Location header is invalid. [#1192 ↵ | Bob Aman | 2009-01-28 | 2 | -2/+15 |
| | | | | | | state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | ActiveResource#eqls? and == should not take into account object identity and ↵ | Rasik Pandey | 2009-01-28 | 2 | -2/+11 |
| | | | | | | prefix options should be considered. [#1098 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | Merge docrails | Pratik Naik | 2009-01-18 | 1 | -1/+1 |
| | |||||
* | Bump up the year in MIT license files | Pratik Naik | 2009-01-18 | 1 | -1/+1 |
| | |||||
* | Inline code comments for class_eval/module_eval [#1657 state:resolved] | Xavier Noria | 2008-12-28 | 1 | -0/+8 |
| | | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com> | ||||
* | normalize author names in changelogs [#1495 state:committed] | Xavier Noria | 2008-12-16 | 1 | -21/+21 |
| | | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com> | ||||
* | Benchmark.ms | Jeremy Kemper | 2008-12-09 | 1 | -2/+2 |
| | |||||
* | Merge with docrails | Pratik Naik | 2008-12-07 | 1 | -0/+2 |
| | |||||
* | Make new_record? an alias of new? in ActiveResource to fix problem with ↵ | miloops | 2008-12-02 | 1 | -0/+1 |
| | | | | | | route generation in forms. Signed-off-by: Michael Koziarski <michael@koziarski.com> | ||||
* | Ruby 1.9 compat: don't shadow local var with block arg | Jeremy Kemper | 2008-11-22 | 1 | -1/+1 |
| | |||||
* | Fix indentation mismatches | Jeremy Kemper | 2008-11-22 | 2 | -56/+56 |
| | |||||
* | Assume that the next version is going to be 2.3 for now | David Heinemeier Hansson | 2008-11-19 | 2 | -3/+3 |
| | |||||
* | Merge branch 'master' into testing | Jeremy Kemper | 2008-11-15 | 3 | -3/+3 |
|\ | |||||
| * | A few more dependency updates | David Heinemeier Hansson | 2008-11-14 | 1 | -1/+1 |
| | | |||||
| * | Prepare for RC2 | David Heinemeier Hansson | 2008-11-14 | 2 | -2/+2 |
| | | |||||
* | | Silence parens warning | Jeremy Kemper | 2008-11-07 | 1 | -1/+1 |
|/ | |||||
* | Fixed that ActiveResource#post would post an empty string when it shouldn't ↵ | David Heinemeier Hansson | 2008-10-30 | 3 | -1/+8 |
| | | | | be posting anything (Paolo Angelini) [#525 state:committed] | ||||
* | Update CHANGELOGs with the last few fixes, set date for today | David Heinemeier Hansson | 2008-10-24 | 1 | -1/+1 |
| | |||||
* | Proper update call for gem server | David Heinemeier Hansson | 2008-10-23 | 1 | -1/+1 |
| | |||||
* | Should be 2.2.0 as well | David Heinemeier Hansson | 2008-10-23 | 1 | -1/+1 |
| | |||||
* | Push to new gem server | David Heinemeier Hansson | 2008-10-23 | 1 | -2/+2 |
| | |||||
* | Prepare for Rails 2.2.0 [RC1] | David Heinemeier Hansson | 2008-10-23 | 2 | -2/+2 |
| | |||||
* | Add ActiveResource::Base#to_xml and ActiveResource::Base#to_json methods. ↵ | Cody Fauser | 2008-10-07 | 4 | -1/+56 |
| | | | | | | [#1011 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com> |