Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | | Fix validation based on object not _id. | Steve Klabnik | 2012-11-27 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | From https://github.com/rails/rails/issues/6161\#issuecomment-10750118 | |||||
| * | | | | correct css selector for the display of validation error messages: changed ↵ | Harper Henn | 2012-11-27 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | | | | | | | #error_explanation to #errorExplanation | |||||
| * | | | | Set fixed-width style where appropriate on Getting Started guide. | Hendy Tanata | 2012-11-27 | 1 | -2/+2 | |
| | | | | | ||||||
| * | | | | Update guides/source/active_record_validations_callbacks.md | Caleb Wright | 2012-11-25 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | In the expiration_date_cannot_be_in_the_past validation method, use `expiration_date.present?` instead of the double negative `!expiration_date.blank?`. Also join the comparisons with `&&` instead of `and`, which could cause unintended consequences. | |||||
| * | | | | Revert "Updated with where functional/helper tests go" | Jason Noble | 2012-11-25 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit c94cfdad6388dcdfaf4c10b9e8cee46baf2a7901. * This is the new 4.0 (master) directory structure | |||||
| * | | | | Reword Post model to note there are lines not shown | Jason Noble | 2012-11-24 | 1 | -1/+2 | |
| | | | | | ||||||
| * | | | | We should use post_path, not post_url | Jason Noble | 2012-11-24 | 1 | -1/+1 | |
| | | | | | ||||||
| * | | | | Updated with where functional/helper tests go | Jason Noble | 2012-11-24 | 1 | -2/+2 | |
| | | | | | ||||||
| * | | | | Moved position of has_many | Jason Noble | 2012-11-24 | 1 | -2/+3 | |
| | | | | | ||||||
| * | | | | Added new line to make it more readable | Jason Noble | 2012-11-24 | 1 | -1/+2 | |
| | | | | | | | | | | | | | | | | | | | | * This shows the reader there is a method: and data: parameters | |||||
| * | | | | Changed the Using Partials section to read a little better | Jason Noble | 2012-11-24 | 1 | -25/+4 | |
| | | | | | | | | | | | | | | | | | | | | * No need to give a simple example, as we have a partial that we create in the blog app | |||||
| * | | | | Modified "Allowing the update of fields" section | Jason Noble | 2012-11-24 | 1 | -12/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Rails generate model Post ______ creates the attr_accessible line for you for any fields you specify. Changed the section to describe what this line in the model does. | |||||
| * | | | | Update version numbers of Ruby and Rails | Jason Noble | 2012-11-24 | 1 | -2/+2 | |
| | | | | | ||||||
| * | | | | Updated link to RubyGems site | Jason Noble | 2012-11-24 | 1 | -1/+1 | |
| |/ / / | ||||||
* | | | | Fix typo in AS guide [ci skip] | Carlos Antonio da Silva | 2012-12-01 | 1 | -2/+2 | |
| | | | | ||||||
* | | | | copy-edits the docs of 9ee0ffb | Xavier Noria | 2012-12-01 | 1 | -7/+5 | |
| | | | | ||||||
* | | | | Patched Marshal#load to work with constant autoloading ↵ | Uriel Katz | 2012-12-01 | 1 | -0/+21 | |
| | | | | | | | | | | | | | | | | (active_support/dependecies.rb) (issue #8167) | |||||
* | | | | Remove references to AR::Observer from docs | claudiob | 2012-11-30 | 1 | -8/+0 | |
| | | | | | | | | | | | | | | | | | | | | ActiveRecord::Observer was extracted into a separate gem so it should not be referenced anymore (see https://github.com/rails/rails/commit/ccecab3) | |||||
* | | | | Split Validations and Callbacks into separate guides. | Steve Klabnik | 2012-11-29 | 4 | -354/+374 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Two big features that are only barely related in the same guide. Seems bad. I did not check references to these guides yet, so some links may need to be updated. | |||||
* | | | | augment the rails4 guide with links to PRs | Yves Senn | 2012-11-29 | 1 | -5/+12 | |
| | | | | ||||||
* | | | | add list of extracted plugins to rails4 guide | Yves Senn | 2012-11-29 | 1 | -0/+14 | |
| | | | | ||||||
* | | | | Remove observers and sweepers | Rafael Mendonça França | 2012-11-28 | 4 | -169/+3 | |
| |/ / |/| | | | | | | | | | | | | | | | | | | | | They was extracted from a plugin. See https://github.com/rails/rails-observers [Rafael Mendonça França + Steve Klabnik] | |||||
* | | | Revert "Merge pull request #8341 from amatsuda/bundle_source_rubygems" | Rafael Mendonça França | 2012-11-27 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 33b29e0112db62d3a8c798bb58f51c0a839d9e26, reversing changes made to ac8c729342e6b020a57d0d6887c8a8d5b39f96e0. Reason: https://github.com/rails/rails/pull/4684#commitcomment-920313 | |||||
* | | | default source in Gemfiles to :rubygems rather than hardcoding the URL | Akira Matsuda | 2012-11-28 | 1 | -1/+1 | |
|/ / | | | | | | | | | | | * I guess this would be the preferrable default for Bundler * current version of Bundler converts :rubygems into 'http://rubygems.org', not https://, and that will help those who are working on a very poor network environment that doesn't allow SSL | |||||
* | | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2012-11-23 | 3 | -4/+4 | |
|\ \ | ||||||
| * | | fixed a minor spelling error | Lennart Tange | 2012-11-20 | 1 | -1/+1 | |
| | | | ||||||
| * | | embed code example using backticks in caching guide | Sergey Nartimov | 2012-11-20 | 1 | -2/+2 | |
| | | | ||||||
| * | | remove previous commit | Michel Grootjans | 2012-11-20 | 1 | -1/+1 | |
| | | | ||||||
| * | | bug in example '<%= form_for ...' should be '<% form_for ...' | Michel Grootjans | 2012-11-20 | 1 | -1/+1 | |
| | | | ||||||
| * | | Fix broken link in Active Record Query Interface guide | Jaime Iniesta | 2012-11-18 | 1 | -1/+1 | |
| | | | ||||||
* | | | fix guide with field_with_error proc example | Aditya Sanghi | 2012-11-20 | 1 | -2/+6 | |
| | | | ||||||
* | | | Merge pull request #8044 from nateberkopec/block_does_not_set_parts_order | Rafael Mendonça França | 2012-11-19 | 1 | -17/+1 | |
|\ \ \ | | | | | | | | | Explicit multipart messages respect :parts_order | |||||
| * | | | Explicit multipart messages respect :parts_order | Nate Berkopec | 2012-11-19 | 1 | -17/+1 | |
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | As issue #7978, the order in which ActionMailer sends multipart messages could be unintentionally overwritten if a block is passed to the mail method. This changes the mail method such that :parts_order is always respected, regardless of whether a block is passed to mail. | |||||
* / / | Add UpgradeSignatureToEncryptionCookieStore to upgrading_ruby_on_rails guide | Santiago Pastorino | 2012-11-19 | 1 | -0/+2 | |
|/ / | ||||||
* | | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2012-11-17 | 32 | -709/+701 | |
|\ \ | | | | | | | | | | | | | Conflicts: actionpack/lib/action_dispatch/routing/redirection.rb | |||||
| * | | copy edits and fixes [ci skip] | Vijay Dev | 2012-11-17 | 5 | -8/+8 | |
| | | | ||||||
| * | | remove kindle link from guides index [ci skip] | Vijay Dev | 2012-11-17 | 1 | -3/+1 | |
| | | | ||||||
| * | | Revert "Switch to 1.9 hash syntax" | Vijay Dev | 2012-11-17 | 1 | -10/+11 | |
| | | | | | | | | | | | | | | | | | | This reverts commit d8596c4b8500a899d686c57fa093c549b0378c7a. Reason: too many mistakes [ci skip] | |||||
| * | | Revert "add AR deep dive video links to guides" | Vijay Dev | 2012-11-17 | 1 | -15/+0 | |
| | | | | | | | | | | | | This reverts commit 25648ce35b9d8df9fac81c1d53c45aaeef08fde9. | |||||
| * | | Switch to 1.9 hash syntax (guides) | Agis Anastasopoulos | 2012-11-16 | 1 | -4/+4 | |
| | | | ||||||
| * | | Switch to 1.9 hash syntax (guides) | Agis Anastasopoulos | 2012-11-16 | 1 | -16/+16 | |
| | | | ||||||
| * | | Update the middleware stack to reflect the current Rails output | Agis Anastasopoulos | 2012-11-16 | 1 | -2/+2 | |
| | | | | | | | | | Specifically, remove `ActionDispatch::Head` in favor of `Rack::Head`. | |||||
| * | | Remove unnecessary whitespace | Agis Anastasopoulos | 2012-11-16 | 1 | -1/+1 | |
| | | | ||||||
| * | | Add link to the Application Templates guide | Agis Anastasopoulos | 2012-11-16 | 1 | -1/+1 | |
| | | | ||||||
| * | | Remove unnecessary whitespace | Agis Anastasopoulos | 2012-11-16 | 1 | -1/+1 | |
| | | | ||||||
| * | | Switch to 1.9 hash syntax (guides) | Agis Anastasopoulos | 2012-11-16 | 1 | -8/+8 | |
| | | | ||||||
| * | | Switch to 1.9 hash syntax (guides) | Agis Anastasopoulos | 2012-11-16 | 1 | -2/+2 | |
| | | | ||||||
| * | | Switch to 1.9 hash syntax | Agis Anastasopoulos | 2012-11-16 | 1 | -22/+22 | |
| | | | ||||||
| * | | Switch to 1.9 hash syntax | Agis Anastasopoulos | 2012-11-16 | 1 | -81/+78 | |
| | | | ||||||
| * | | Add a consideration note | Agis Anastasopoulos | 2012-11-16 | 1 | -0/+1 | |
| | | | | | | | | | regarding linking to Kindle |