aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
Commit message (Expand)AuthorAgeFilesLines
* Permit string and float values in the multiparameter attributesRafael Mendonça França2012-10-181-9/+14
* Cleanup trailing whitespacesdfens2012-10-121-1/+1
* When executing permit with just a key that points to a hash, DO NOT allow all...Santiago Pastorino2012-10-121-1/+5
* can't pass :locals to #assert_template without a view test case. Closes #3415Yves Senn2012-10-061-0/+11
* Allow parameter filters to match multi-parameter attributesRafael Mendonça França2012-10-051-0/+33
* ActionController::Parameters#permit! is recursiveBrendan Loudermilk2012-10-041-0/+7
* rename page_cache_extension option to default_static_extensionFrancesco Rodriguez2012-10-031-0/+15
* extract AP Page and Action caching to actionpack-deprecated_caching gemFrancesco Rodriguez2012-10-032-739/+16
* Failsafe exception returns text/plain.Steve Klabnik2012-10-011-0/+16
* `assert_template` no more passing with what ever string that matches.Hugo Roque2012-09-291-0/+22
* move metal/caching_test into controller/caching_testFrancesco Rodriguez2012-09-271-5/+42
* remove method redefinition warningsRafael Mendonça França2012-09-271-1/+1
* Allow strings in the controller test describe blocksMike Moore2012-09-242-0/+129
* Support controller tests using spec DSL - fixes #7743Mike Moore2012-09-241-0/+116
* Correct parameter access.Philip Arndt2012-09-191-1/+1
* Merge pull request #7251 from rails/integrate-strong_parametersDavid Heinemeier Hansson2012-09-186-40/+251
|\
| * Support fields_for attributes, which may have numeric symbols as hash keysGuillermo Iguaran2012-09-161-0/+18
| * Add config.action_controller.permit_all_attributes to bypass StrongParameters...Guillermo Iguaran2012-09-161-0/+14
| * Change tainted/untainted wording to permitted/forbiddenGuillermo Iguaran2012-09-163-26/+26
| * Don't use assert_nothing_raised when assert_equal is usedGuillermo Iguaran2012-09-161-4/+2
| * require abstract_unit in parameters testsGuillermo Iguaran2012-09-163-0/+3
| * Remove integration between attr_accessible/protected and AC::Metal::ParamsWra...Guillermo Iguaran2012-09-161-40/+0
| * Integrate ActionController::Parameters from StrongParameters gemGuillermo Iguaran2012-09-165-0/+218
* | log 404 status when ActiveRecord::RecordNotFound was raised (#7646)Yves Senn2012-09-171-0/+15
|/
* Merge pull request #7616 from lest/null-session-forgery-protectionMichael Koziarski2012-09-131-10/+6
|\
| * Implement :null_session CSRF protection methodSergey Nartimov2012-09-131-10/+6
* | Define a SynchronousQueue for test in Action Pack.Rafael Mendonça França2012-09-121-0/+10
|/
* AS::Callbacks: deprecate monkey patch of object callbacksBogdan Gusiev2012-09-071-7/+7
* Added controller-level etag additions that will be part of the action etag co...David Heinemeier Hansson2012-08-291-0/+32
* Add automatic template digests to all CacheHelper#cache calls (originally spi...David Heinemeier Hansson2012-08-291-5/+16
* Add Missing Keys from Journey on failed URL formatschneems2012-08-281-6/+6
* Deprecate AV::RecordIdentifier in controllersPiotr Sarnacki2012-08-281-0/+41
* Use ActionView::Base.logger instead of AC::Base.loggerPiotr Sarnacki2012-08-281-1/+1
* Move action_controller/vendor/html-scanner to action_viewPiotr Sarnacki2012-08-283-3/+3
* Move ActionController::RecordIdentifier to ActionViewPiotr Sarnacki2012-08-281-40/+0
* Access @rs only through attr_accessortomykaira2012-08-201-11/+11
* Extract common controllers to abstract_unitRafael Mendonça França2012-08-131-29/+0
* set the controller under test so we no longer need the reset! methodAaron Patterson2012-08-091-38/+4
* removes usage of Object#in? from the code base (the method remains defined by...Xavier Noria2012-08-062-7/+8
* make sure the body finishes rendering before checking response closureAaron Patterson2012-08-031-1/+2
* Collapsed dual checks (one for content headers and one for content) into a si...Armand du Plessis2012-08-022-4/+34
* Merge pull request #7240 from steveklabnik/fix_2301Rafael Mendonça França2012-08-021-3/+4
|\
| * Fix for digest authentication bug - issue #2301 in rails/railsArthur Smith2012-08-021-3/+4
* | load active_support/core_ext/object/inclusion in active_support/railsXavier Noria2012-08-022-2/+0
|/
* html_escape should escape single quotesSantiago Pastorino2012-07-312-3/+3
* close the response when the response body is set so that normal render calls ...Aaron Patterson2012-07-291-0/+9
* header hash is duped before being sent up the rack stackAaron Patterson2012-07-291-0/+13
* make sure set_response! sets the correct response objectAaron Patterson2012-07-291-0/+6
* Controller actions are processed in a separate thread for liveAaron Patterson2012-07-291-3/+69
* added live responses which can be written and read in separate threadsAaron Patterson2012-07-291-0/+26