aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* relation .present? and .blank? should not query SELECT COUNT(DISTINCT id)Thiago Almeida2012-03-161-0/+4
|
* Merge pull request #5454 from luke-gru/luke-devPiotr Sarnacki2012-03-152-4/+44
|\ | | | | allow zero-arity proc for AbstrController::layout
| * allow zero-arity proc for AbstrController::layoutLuke Gruber2012-03-152-4/+44
| | | | | | | | | | proc without parameters can now be given to AbstractController::layout
* | Merge pull request #5457 from brianmario/typo-fixAaron Patterson2012-03-151-1/+1
|\ \ | | | | | | Fix typo in redirect test
| * | fix typo in redirect testBrian Lopez2012-03-151-1/+1
|/ /
* | Merge pull request #5456 from brianmario/redirect-sanitizationAaron Patterson2012-03-153-2/+22
|\ \ | |/ |/| Strip null bytes from Location header
| * strip null bytes from Location header as wellBrian Lopez2012-03-153-2/+22
|/ | | | add tests for stripping \r\n chars since that's already happening
* errors should probably be logged as errorsAaron Patterson2012-03-151-20/+19
|
* Merge pull request #5451 from yahonda/address_hstores_failueAaron Patterson2012-03-151-1/+1
|\ | | | | Address the dump file format for hstore
| * Address the dump file format for hstoreYasuo Honda2012-03-151-1/+1
|/
* Revert "AM::MassAssingmentSecurity: improve performance"José Valim2012-03-152-17/+19
| | | | | | It introduces backwards incompatible changes in the API. This reverts commit 7d1379ffdbbaf01e99833dc06611b7e4f3799522.
* Merge pull request #5437 from kennyj/fix_5430Aaron Patterson2012-03-152-1/+8
|\ | | | | Fix GH #5430. A Payload name for schema_search_path should be SCHEMA.
| * Fix GH #5430. A Payload name for schema_search_path should be SCHEMA.kennyj2012-03-152-1/+8
| |
* | Merge pull request #5337 from mreinsch/static_invalid_byte_sequenceAaron Patterson2012-03-152-0/+5
|\ \ | | | | | | fix ArgumentError being raised in case of invalid byte sequences
| * | fix ArgumentError being raised in case of invalid byte sequencesMichael Reinsch2012-03-082-0/+5
| | |
* | | Merge pull request #5448 from JonRowe/patch_file_update_on_masterJosé Valim2012-03-152-1/+20
|\ \ \ | | | | | | | | Commas in directory names causes hang in ActiveSupport::FileUpdateChecker
| * | | escape commas in paths before globbing to avoid infinite hang in Dir[]Jon Rowe2012-03-152-1/+20
|/ / /
* | | Simplify helpers handling. Ensure Metal can run AC hooks.José Valim2012-03-156-37/+65
| | |
* | | Remove ActionController::TestCase#rescue_action_in_public!Piotr Sarnacki2012-03-152-10/+0
| | | | | | | | | | | | | | | | | | This method has no effect since exception handling was moved to middlewares and ActionController tests do not use any middlewares.
* | | Allow you to force the authenticity_token to be rendered even on remote ↵David Heinemeier Hansson2012-03-142-5/+20
| | | | | | | | | | | | forms if you pass true
* | | Do not include the authenticity token in forms where remote: true as ajax ↵David Heinemeier Hansson2012-03-143-2/+27
| | | | | | | | | | | | forms use the meta-tag value
* | | Remove remaining http_only? calls.José Valim2012-03-142-14/+4
| | |
* | | Remove --http.José Valim2012-03-1430-1020/+7
| | |
* | | Merge pull request #5357 from bagilevi/sweeper-undefined-method-ignoredPiotr Sarnacki2012-03-142-1/+17
|\ \ \ | | | | | | | | Don't ignore call to undefined method in Sweeper
| * | | Don't ignore call to undefined method in SweeperLevente Bagi2012-03-062-1/+17
| | | |
* | | | Merge pull request #5439 from carlosantoniodasilva/rake-test-scaffoldJosé Valim2012-03-143-5/+31
|\ \ \ \ | |_|_|/ |/| | | Fix scaffold controller template and ensure rake test for scaffold works
| * | | Fix scaffold controller template, ensure rake scaffold test pass by defaultCarlos Antonio da Silva2012-03-143-5/+31
| | | |
* | | | Add API apps CHANGELOG entrySantiago Pastorino2012-03-141-0/+2
|/ / /
* | | Update railties/guides/source/api_app.textileJosé Valim2012-03-141-2/+0
| | |
* | | Do not generate app/views and sprockets entries on http appCarlos Antonio da Silva2012-03-142-1/+21
| | | | | | | | | | | | [Carlos Antonio da Silva & Santiago Pastorino]
* | | Generate special controller and functional test templates for http appsCarlos Antonio da Silva2012-03-1410-5/+181
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The main goal is to not generate the format.html block in scaffold controller, and to generate a different functional test as we don't rely on redirects anymore, we should test for http responses. In addition to that, the :edit action is removed from the http controller and the edit route is not generated by default, as they usually do not make sense in this scenario. [Carlos Antonio da Silva & Santiago Pastorino]
* | | Rename http-only app generator option to httpCarlos Antonio da Silva2012-03-144-10/+10
| | | | | | | | | | | | [Carlos Antonio da Silva & Santiago Pastorino]
* | | Move http only option to AppGeneratorCarlos Antonio da Silva2012-03-142-3/+3
| | | | | | | | | | | | [Carlos Antonio da Silva & Santiago Pastorino]
* | | Add test to ensure setting config.generators.http_only actually disables the ↵Carlos Antonio da Silva2012-03-142-2/+15
| | | | | | | | | | | | | | | | | | generator options [Carlos Antonio da Silva & Santiago Pastorino]
* | | Allow generator configs from http_only! to be overriden by appCarlos Antonio da Silva2012-03-142-1/+16
| | | | | | | | | | | | [Carlos Antonio da Silva & Santiago Pastorino]
* | | Remove duplicated tests from shared generatorCarlos Antonio da Silva2012-03-142-16/+2
| | | | | | | | | | | | [Carlos Antonio da Silva & Santiago Pastorino]
* | | Refactor http_only, remove reader methodCarlos Antonio da Silva2012-03-141-14/+19
| | | | | | | | | | | | [Carlos Antonio da Silva & Santiago Pastorino]
* | | Disable template, helper and assets options when using http_only!Carlos Antonio da Silva2012-03-142-1/+32
| | | | | | | | | | | | [Carlos Antonio da Silva & Santiago Pastorino]
* | | Create generators http_only! setup and hide some common namespaces for nowCarlos Antonio da Silva2012-03-143-4/+42
| | | | | | | | | | | | [Carlos Antonio da Silva & Santiago Pastorino]
* | | Generate middleware http_only! config when running http only app generatorCarlos Antonio da Silva2012-03-142-1/+16
| | | | | | | | | | | | [Carlos Antonio da Silva & Santiago Pastorino]
* | | Add http-only option to Rails app generatorCarlos Antonio da Silva2012-03-144-5/+18
| | | | | | | | | | | | | | | | | | | | | Change application controller template accordingly, to inherit from ActionController::HTTP and not generate protect_from_forgery call. [Carlos Antonio da Silva & Santiago Pastorino]
* | | Add ActionController::HTTPSantiago Pastorino2012-03-1417-9/+383
| | | | | | | | | | | | | | | | | | More info http://edgeguides.rubyonrails.org/api_app.html [Carlos Antonio da Silva & Santiago Pastorino]
* | | Merge pull request #5431 from bogdan/mas_performanceJosé Valim2012-03-142-19/+17
|\ \ \ | | | | | | | | AM::MassAssingmentSecurity: improve performance
| * | | AM::MassAssingmentSecurity: improve performanceBogdan Gusiev2012-03-142-19/+17
| | | |
* | | | Merge pull request #5421 from parndt/masterVijay Dev2012-03-141-0/+1
|\ \ \ \ | |/ / / |/| | | Added missing 'end' to documentation example
| * | | Added missing end to examplePhilip Arndt2012-03-141-0/+1
| | | |
* | | | Merge pull request #5425 from rafaelfranca/remove_key_valueJosé Valim2012-03-1410-37/+23
|\ \ \ \ | | | | | | | | | | Remove key_value helper now that master is 1.9 only and we always use the 1.9 hash syntax in the generators.
| * | | | Remove key_value helper now that master is 1.9 only and we always useRafael Mendonça França2012-03-1310-37/+23
|/ / / / | | | | | | | | | | | | the 1.9 hash syntax in the generators.
* | | | Update API guide with latest decisions.José Valim2012-03-141-10/+8
| | | |
* | | | [engines guide] Add information about running and reverting specified ↵Piotr Sarnacki2012-03-141-4/+16
| | | | | | | | | | | | | | | | migrations [skip ci]