Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Action Pack typos. | R.T. Lechow | 2011-03-04 | 11 | -15/+15 |
| | |||||
* | Active Record typos. | R.T. Lechow | 2011-03-04 | 6 | -10/+10 |
| | |||||
* | Active Support typos. | R.T. Lechow | 2011-03-04 | 7 | -7/+7 |
| | |||||
* | Active Resource typos. | R.T. Lechow | 2011-03-04 | 5 | -6/+6 |
| | |||||
* | Active Model typos. | R.T. Lechow | 2011-03-04 | 2 | -2/+2 |
| | |||||
* | Merge remote branch 'origin/master' | Jonathon D. Jones | 2011-03-03 | 1 | -1/+1 |
|\ | |||||
| * | Properly escaped a + in the dynamic segments TIP | tashian | 2011-03-03 | 1 | -1/+1 |
| | | |||||
* | | Adds link to Object.blank? from Object.present? | Jonathon D. Jones | 2011-03-03 | 1 | -1/+1 |
|/ | |||||
* | fixes a missmatched column in example | mjy | 2011-03-03 | 1 | -1/+1 |
| | |||||
* | Spelling mistake | JudeArasu | 2011-03-03 | 1 | -1/+2 |
| | |||||
* | Correct spelling for Base64 in action_mailer | Dalibor Nasevic | 2011-03-03 | 1 | -1/+1 |
| | |||||
* | Removed link to un-existing Issues page on Github | Dalibor Nasevic | 2011-03-01 | 1 | -3/+0 |
| | |||||
* | Added some new advice on applying patches | Lars Smit | 2011-02-28 | 1 | -0/+14 |
| | |||||
* | Fix incorrect example. | Ben Orenstein | 2011-02-27 | 1 | -2/+2 |
| | |||||
* | Fix incorrect word. | Ben Orenstein | 2011-02-27 | 1 | -1/+1 |
| | |||||
* | Pointing out that dynamic_form plugin must be installed to be able to use ↵ | Rodrigo Navarro | 2011-02-27 | 1 | -1/+14 |
| | | | | error_messages and error_messages_for view helpers. | ||||
* | Clean up wording. | Ben Orenstein | 2011-02-26 | 1 | -1/+1 |
| | |||||
* | use resources in place of map.resources | Vijay Dev | 2011-02-27 | 1 | -1/+1 |
| | |||||
* | Clarify comment by removing french reference ('a la'). Should improve ↵ | Ben Orenstein | 2011-02-26 | 1 | -1/+1 |
| | | | | readability for non-native english speakers. | ||||
* | Example descriptions and their examples were flipped. Fix. | Ben Orenstein | 2011-02-26 | 1 | -3/+3 |
| | |||||
* | Warn people that these methods are deprecated. | Ben Orenstein | 2011-02-26 | 1 | -0/+2 |
| | |||||
* | Correct example that did not do what it claimed. Rework explanation. | Ben Orenstein | 2011-02-26 | 1 | -5/+5 |
| | |||||
* | added information about TEST_DIR env variable | Ilya Zayats | 2011-02-26 | 1 | -0/+8 |
| | |||||
* | Merge branch 'master' of git://github.com/lifo/docrails | Xavier Noria | 2011-02-25 | 13 | -86/+83 |
|\ | |||||
| * | standardize all shell commands with the $ prefix | Vijay Dev | 2011-02-25 | 12 | -78/+78 |
| | | |||||
| * | Fix missing inheritance from AR::Base in docs | Josep M. Bach | 2011-02-24 | 1 | -1/+1 |
| | | |||||
| * | Fixing wrong class name. | Rodrigo Navarro | 2011-02-23 | 1 | -1/+1 |
| | | |||||
| * | ActiveModel::Validator#validate must receive have a record parameter. | Rodrigo Navarro | 2011-02-23 | 1 | -6/+3 |
| | | |||||
* | | Always use ActionDispatch::ShowExceptions middleware [#6462 state:resolved] | Prem Sichanugrist | 2011-02-25 | 3 | -3/+40 |
| | | | | | | | | This will make sure the application will raise `ActionController::RoutingError` in case "X-Cascade: pass" header was set, usually when there's no route match. | ||||
* | | Make sure that we set `env["action_dispatch.show_exceptions"]` | Prem Sichanugrist | 2011-02-25 | 2 | -1/+17 |
| | | | | | | | | This has been used by `show_exception` middleware even the setting wasn't get passed to `env` hash. | ||||
* | | fixes: ActiveRecord::Base.scopes includes all scopes defined in all subclasses | Eric Allam | 2011-02-24 | 2 | -2/+7 |
| | | |||||
* | | observers leak across tests, so rather than modify the object, we should ↵ | Aaron Patterson | 2011-02-23 | 1 | -6/+12 |
| | | | | | | | | just count the number of times the observer was called | ||||
* | | Removing redundant File.expand_path from generators test | Vinicius Baggio | 2011-02-23 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | | Fix observer callbacks firing multiple times on descendant instances | Kamal Fariz Mahyuddin | 2011-02-22 | 2 | -1/+22 |
| | | |||||
* | | Fix tests on 1.8. | José Valim | 2011-02-22 | 2 | -27/+8 |
| | | |||||
* | | We're in 2011, let's update our license | Prem Sichanugrist | 2011-02-22 | 13 | -13/+13 |
| | | | | | | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | | Prepend the CSRF filter to make it much more difficult to execute ↵ | Michael Koziarski | 2011-02-23 | 1 | -1/+1 |
| | | | | | | | | application code before it fires. | ||||
* | | expectations change when using IM. Change oracle tests to reflect that | Aaron Patterson | 2011-02-22 | 1 | -2/+6 |
| | | |||||
* | | Relation will delegate to AR::Base which already uses the Dynamic finders, ↵ | Aaron Patterson | 2011-02-22 | 1 | -8/+3 |
|/ | | | | so eliminate duplicate calls | ||||
* | Merge branch 'master' of git://github.com/lifo/docrails | Xavier Noria | 2011-02-22 | 2 | -2/+2 |
|\ | |||||
| * | alteracao de HTML para HTTP | Mateus Paixão | 2011-02-22 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'master' of github.com:lifo/docrails | Mani Tadayon | 2011-02-21 | 0 | -0/+0 |
| |\ | |||||
| * | | Fix typo in i18n guide: 'explicitely' | Mani Tadayon | 2011-02-21 | 1 | -1/+1 |
| | | | |||||
| * | | copy-edits 8d96b89 | Xavier Noria | 2011-02-21 | 11 | -19/+36 |
| | | | |||||
| * | | copy-edits 6d7a826 | Xavier Noria | 2011-02-21 | 1 | -3/+3 |
| | | | |||||
| * | | copy-edits 34316d8 | Xavier Noria | 2011-02-21 | 1 | -7/+5 |
| | | | |||||
| * | | Docs: Update to_xml documentation to match as_json docuemntation | Nicholas Rowe | 2011-02-21 | 1 | -0/+25 |
| | | | |||||
| * | | Adding new examples for update_all method | Rodrigo Navarro | 2011-02-21 | 1 | -0/+6 |
| | | | |||||
| * | | Adding examples | Rodrigo Navarro | 2011-02-21 | 1 | -0/+2 |
| | | | |||||
| * | | Specifying :partial is required when passing additional options such as :layout | Andy Lindeman | 2011-02-21 | 1 | -1/+3 |
| | | |