| Commit message (Expand) | Author | Age | Files | Lines |
* | ActionController::Base.use_accept_header is not actually used anymore, so let... | Carl Lerche | 2010-03-03 | 1 | -4/+0 |
* | Require persisted? in ActiveModel::Lint and remove new_record? and destroyed?... | José Valim | 2010-02-21 | 1 | -2/+2 |
* | Improve missing template error messages a little bit. | José Valim | 2010-01-31 | 1 | -1/+1 |
* | Raise an error if respond_with is invoked and no format is declared. | José Valim | 2010-01-10 | 1 | -68/+62 |
* | Merge branch 'master' of github.com:rails/rails | Yehuda Katz | 2009-12-10 | 1 | -3/+5 |
|\ |
|
| * | Use new routing dsl in tests | Joshua Peek | 2009-12-08 | 1 | -3/+5 |
* | | Responder redirects to resource if destroy fails. | José Valim | 2009-12-07 | 1 | -8/+34 |
|/ |
|
* | Allow ActionController::Responder to have a common entry point for all formats. | José Valim | 2009-12-01 | 1 | -0/+17 |
* | Split mime responder into smaller chunks and allow action to be configured. | José Valim | 2009-11-13 | 1 | -1/+21 |
* | Unify class_inheritable_accessor and extlib_inheritable_accessor and allow re... | José Valim | 2009-10-17 | 1 | -0/+8 |
* | Use with_routing helper in tests instead of modifying global route set | Joshua Peek | 2009-10-03 | 1 | -67/+83 |
* | Ensure that blocks are also handled inside the responder. | José Valim | 2009-08-29 | 1 | -0/+7 |
* | Cleanup route reloading in tests. Prefer with_routing over using ActionContro... | Joshua Peek | 2009-08-16 | 1 | -0/+1 |
* | Got tests to pass with some more changes. | Yehuda Katz | 2009-08-15 | 1 | -34/+17 |
* | Ensure collections are not treated as nested resources. | José Valim | 2009-08-13 | 1 | -7/+20 |
* | Renamed ActionController::Renderer to ActionController::Responder and ActionC... | José Valim | 2009-08-08 | 1 | -5/+5 |
* | Renamed presenter to renderer, added some documentation and defined its API. | José Valim | 2009-08-07 | 1 | -4/+18 |
* | Encapsulate respond_with behavior in a presenter. | José Valim | 2009-08-07 | 1 | -22/+18 |
* | Add destroyed? to ActiveRecord, include tests for polymorphic urls for destro... | José Valim | 2009-08-07 | 1 | -68/+24 |
* | Add nagivational behavior to respond_with. | José Valim | 2009-08-07 | 1 | -16/+73 |
* | Added tests for nested resources. | José Valim | 2009-07-31 | 1 | -12/+48 |
* | Allow respond_with to deal with http verb accordingly. | José Valim | 2009-07-31 | 1 | -3/+62 |
* | Remove last TODO. | José Valim | 2009-07-29 | 1 | -1/+1 |
* | Add a couple more tests to respond_with. | José Valim | 2009-07-29 | 1 | -0/+38 |
* | Added respond_with. | José Valim | 2009-07-29 | 1 | -1/+69 |
* | Added tests for respond_to class method. | José Valim | 2009-07-29 | 1 | -2/+68 |
* | Refactor even more Responder. Move mime negotiation to request and added resp... | José Valim | 2009-07-29 | 1 | -10/+12 |
* | Refactor Responder to only calculate available mime types. Those are sent to ... | José Valim | 2009-07-29 | 1 | -3/+3 |
* | Cleaning up more tests and code that needed to work in both old and new base | Yehuda Katz + Carl Lerche | 2009-06-17 | 1 | -9/+7 |
* | RJS doesn't render with an HTML layout by default | Yehuda Katz + Carl Lerche | 2009-06-17 | 1 | -5/+3 |
* | An exception is raised if a layout is missing only if the layout is missing f... | Yehuda Katz + Carl Lerche | 2009-06-16 | 1 | -8/+0 |
* | More _write_layout_method removal | Yehuda Katz + Carl Lerche | 2009-06-15 | 1 | -5/+0 |
* | Got controller/mime_responds_test.rb running on the new base | Yehuda Katz + Carl Lerche | 2009-05-20 | 1 | -11/+15 |
* | Added responds_to to new base. | Yehuda Katz + Carl Lerche | 2009-05-20 | 1 | -9/+15 |
* | Resurrecting 1.9 compatibility. | Carl Lerche & Yehuda Katz | 2009-04-13 | 1 | -2/+2 |
* | Bring abstract_controller up to date with rails/master | Carl Lerche & Yehuda Katz | 2009-04-13 | 1 | -1/+1 |
|\ |
|
| * | Ruby 1.9 compat: rename deprecated assert_raises to assert_raise. | Jeremy Kemper | 2009-03-08 | 1 | -1/+1 |
* | | Temporarily modifies setup to call super directly. This can support more T::U... | Yehuda Katz and Carl Lerche | 2009-04-08 | 1 | -0/+3 |
* | | Begin unifying the interface between ActionController and ActionView | Yehuda Katz | 2009-01-22 | 1 | -1/+1 |
|/ |
|
* | Move controller assertions from base TestCase to AC:: and AV::TestCase | Jeremy Kemper | 2008-11-07 | 1 | -10/+6 |
* | Update tests for request memoization | Jeremy Kemper | 2008-08-08 | 1 | -31/+31 |
* | Set global ActionController::Base.view_paths for test cases | Joshua Peek | 2008-07-12 | 1 | -2/+0 |
* | Disable the Accept header by default | Michael Koziarski | 2008-07-07 | 1 | -0/+5 |
* | Set precompiled fixture load path constant to speed up tests | Joshua Peek | 2008-06-25 | 1 | -27/+26 |
* | Move missing template logic to ActionView | Pratik Naik | 2008-04-19 | 1 | -1/+1 |
* | Make MimeResponds::Responder#any work without explicit types. Closes #11140 [... | Pratik Naik | 2008-03-07 | 1 | -0/+36 |
* | Reapply the TemplateFinder first applied in [8669] then reverted in [8676]. C... | Michael Koziarski | 2008-01-21 | 1 | -5/+1 |
* | Revert r8669 for now, breaks Action Mailer. Reopens #10800. | Jeremy Kemper | 2008-01-19 | 1 | -1/+5 |
* | Introduce TemplateFinder to handle view paths and lookups. Closes #10800. | Jeremy Kemper | 2008-01-19 | 1 | -5/+1 |
* | require abstract_unit directly since test is in load path | Jeremy Kemper | 2008-01-05 | 1 | -1/+1 |