Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove unused captures | Aaron Patterson | 2012-01-19 | 1 | -2/+2 |
| | |||||
* | avoid useless is_a checks | Aaron Patterson | 2012-01-19 | 1 | -8/+8 |
| | |||||
* | move tagged logging to a module, stop proxying every method call | Aaron Patterson | 2012-01-19 | 1 | -36/+32 |
| | |||||
* | Merge pull request #4546 from carlosantoniodasilva/response-body-performed | José Valim | 2012-01-19 | 3 | -8/+5 |
|\ | | | | | Use performed? instead of checking for response_body | ||||
| * | Use performed? instead of checking for response_body | Carlos Antonio da Silva | 2012-01-19 | 3 | -8/+5 |
|/ | | | | | | * Check for performed? instead of response_body * Change performed? to return a boolean * Refactor AC::Metal#response_body= to reuse variable | ||||
* | do not do reverse lookups on incoming requests for webrick. fixes #4542 | Aaron Patterson | 2012-01-19 | 1 | -0/+1 |
| | |||||
* | update release notes [ci skip] | Vijay Dev | 2012-01-20 | 1 | -2/+0 |
| | |||||
* | Do not deprecate performed. | José Valim | 2012-01-19 | 3 | -2/+11 |
| | |||||
* | add uglifier version info in the 'what to update' section | Vijay Dev | 2012-01-19 | 1 | -0/+1 |
| | |||||
* | fix duplicate ids for the headers [ci skip] | Vijay Dev | 2012-01-19 | 1 | -7/+7 |
| | |||||
* | document AR::Base#with_lock in release notes [ci skip] | Vijay Dev | 2012-01-19 | 1 | -0/+27 |
| | |||||
* | update the getting_started guide code [ci skip] | Vijay Dev | 2012-01-19 | 9 | -24/+57 |
| | |||||
* | Merge pull request #4531 from exviva/pessimistic_with_lock | Aaron Patterson | 2012-01-19 | 4 | -1/+81 |
|\ | | | | | Add ActiveRecord::Base#with_lock | ||||
| * | Add ActiveRecord::Base#with_lock | Olek Janiszewski | 2012-01-18 | 4 | -1/+81 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a `with_lock` method to ActiveRecord objects, which starts a transaction, locks the object (pessimistically) and yields to the block. The method takes one (optional) parameter and passes it to `lock!`. Before: class Order < ActiveRecord::Base def cancel! transaction do lock! # ... cancelling logic end end end After: class Order < ActiveRecord::Base def cancel! with_lock do # ... cancelling logic end end end | ||||
* | | Merge pull request #4538 from kennyj/should_use_uri_parse | Aaron Patterson | 2012-01-19 | 4 | -11/+7 |
|\ \ | | | | | | | Convert URI.parser.parse to URI.parse, and remove ruby 1.8.x code. | ||||
| * | | Convert URI.parser.parse to URI.parse, and remove ruby 1.8.x code. | kennyj | 2012-01-19 | 4 | -11/+7 |
| | | | |||||
* | | | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2012-01-19 | 2 | -1/+3 |
|\ \ \ | |||||
| * | | | revising release notes [ci skip] | Vijay Dev | 2012-01-19 | 1 | -2/+2 |
| | | | | |||||
| * | | | Fix small typo in mail_to docs in url_helper.rb | Simon Baird | 2012-01-19 | 1 | -1/+1 |
| | | | | |||||
| * | | | update release note: timestamps is non-null as default | Fujimura Daisuke | 2012-01-19 | 1 | -0/+2 |
| | | | | |||||
* | | | | select doesn't take multiple arguments - fixes #4539 [ci skip] | Vijay Dev | 2012-01-19 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | | | | Also, fixed the bit about returning AM::MissingAttributeError. This seems to be fixed earlier in 3-2-stable only. | ||||
* | | | | Merge pull request #4532 from rafaelfranca/av-button_to-refactor | José Valim | 2012-01-19 | 4 | -20/+40 |
|\ \ \ \ | | | | | | | | | | | Refactor button_to helper to use token_tag method | ||||
| * | | | | Extract method_tag | Rafael Mendonça França | 2012-01-19 | 2 | -2/+6 |
| | | | | | |||||
| * | | | | Refactor button_to helper to use token_tag method | Rafael Mendonça França | 2012-01-19 | 4 | -18/+34 |
| | |_|/ | |/| | | |||||
* | | | | Merge pull request #4534 from lest/patch-1 | Piotr Sarnacki | 2012-01-18 | 1 | -29/+8 |
|\ \ \ \ | |_|/ / |/| | / | | |/ | |/| | refactor RAILS_CACHE deprecation | ||||
| * | | refactor RAILS_CACHE deprecation | Sergey Nartimov | 2012-01-19 | 1 | -29/+8 |
|/ / | | | | | | | that was introduced in 6f8159c4217dc8433a2027ced0c61e7ce94551d3 | ||||
* | | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2012-01-19 | 1 | -1/+7 |
|\ \ | |/ |/| | |||||
| * | revise wording [ci skip] | Vijay Dev | 2012-01-19 | 1 | -2/+2 |
| | | |||||
| * | Adding Action Mailer section to 3.2 release notes | Guillermo Iguaran | 2012-01-18 | 1 | -0/+6 |
| | | |||||
| * | Update Release Notes: sprockets-rails section should be inside of ActionPack ↵ | Guillermo Iguaran | 2012-01-18 | 1 | -1/+1 |
| | | | | | | | | section | ||||
* | | Merge pull request #4527 from rafaelfranca/av-logger | José Valim | 2012-01-18 | 2 | -11/+0 |
|\ \ | |/ |/| | Remove delegation to ActionController::Base | ||||
| * | Test::Unit::Collector::ObjectSpace is not present anymore | Rafael Mendonça França | 2012-01-18 | 1 | -10/+0 |
| | | |||||
| * | Remove delegation to ActionController::Base | Rafael Mendonça França | 2012-01-18 | 1 | -1/+0 |
| | | |||||
* | | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2012-01-19 | 2 | -2/+3 |
|\ \ | |/ |/| | |||||
| * | Revert "Remove redundant mention of escape_javascript alias." | Vijay Dev | 2012-01-19 | 1 | -1/+1 |
| | | | | | | | | | | | | This reverts commit d7f7f5ee560fafa7e9819786e41bf0ea6df7919b. Reason: That isn't redundant IMO. | ||||
| * | Update docs for config.assets.logger | Rafael Mendonça França | 2012-01-18 | 1 | -2/+1 |
| | | |||||
| * | Add documentation to config.assets.logger | Rafael Mendonça França | 2012-01-17 | 1 | -0/+2 |
| | | |||||
| * | Remove redundant mention of escape_javascript alias. | Hendy Tanata | 2012-01-16 | 1 | -1/+1 |
| | | | | | | | | The doc already shows the alias. | ||||
| * | Merge pull request #76 from makoto/master | Vijay Dev | 2012-01-16 | 1 | -2/+2 |
| |\ | | | | | | | UrlEncodedPairParser is deprecated, but still used as an example | ||||
| | * | ActionController::UrlEncodedPairParser is deprecated. Replaced the url ↵ | Makoto Inoue | 2012-01-16 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | parsing example with Rack::Utils.parse_query - https://webrat.lighthouseapp.com/projects/10503/tickets/161-urlencodedpairparser-removed-in-edge-rails | ||||
* | | | updates to 3.2 release notes | Vijay Dev | 2012-01-18 | 1 | -1/+19 |
| | | | |||||
* | | | Merge pull request #4523 from rafaelfranca/av-logger | Aaron Patterson | 2012-01-18 | 7 | -7/+12 |
|\ \ \ | | | | | | | | | Add ActionView own logger | ||||
| * | | | ActionView now has its own logger | Rafael Mendonça França | 2012-01-18 | 7 | -7/+12 |
|/ / / | |||||
* | | | Merge pull request #4522 from kennyj/fix_warning_20120119 | José Valim | 2012-01-18 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | Fix warning: assigned but unused variable - result | ||||
| * | | | Fix warning: assigned but unused variable - result | kennyj | 2012-01-19 | 1 | -1/+1 |
|/ / / | |||||
* | | | Merge pull request #4517 from carlosantoniodasilva/form-builder-block | José Valim | 2012-01-18 | 2 | -13/+10 |
|\ \ \ | | | | | | | | | Refactor FormBuilder arguments and default config | ||||
| * | | | Refactor FormBuilder arguments and default config | Carlos Antonio da Silva | 2012-01-18 | 2 | -13/+10 |
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Do not reopen AV::Base to define default form builder Inside the load hook we are already in AV::Base context. * Do not pass the given block to the form builder The block is evaluated in fields_for context using capture, with the builder as argument. This means we do not need to give the block to the FormBuilder itself. | ||||
* | | | Merge pull request #4509 from rafaelfranca/form_tag-refactor | José Valim | 2012-01-17 | 2 | -6/+5 |
|\ \ \ | | | | | | | | | Refactor form_for and form_tag | ||||
| * | | | No need to call html_safe since concat two SaffeBuffers always results in a ↵ | Rafael Mendonça França | 2012-01-17 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | SafeBuffer | ||||
| * | | | Use block syntax to avoid code duplication | Rafael Mendonça França | 2012-01-17 | 1 | -3/+3 |
| | | | |