Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | [ci skip] Fix what is pushed to nesting about eval family | yui-knk | 2015-01-24 | 1 | -2/+3 | |
| | | | ||||||
* | | | constants guide: make assumption explicit in an example [closes #18465] [ci ↵ | Xavier Noria | 2015-01-23 | 1 | -0/+10 | |
| | | | | | | | | | | | | skip] | |||||
* | | | fix regexp for validate an integer in guides [ci skip] | yuuji.yaginuma | 2015-01-22 | 1 | -1/+1 | |
| | | | ||||||
* | | | Add :formats to options list of render documentation. | Diogo Benicá | 2015-01-21 | 1 | -1/+11 | |
| | | | ||||||
* | | | Merge pull request #18322 from morgoth/add-error-codes | Rafael Mendonça França | 2015-01-21 | 1 | -2/+56 | |
|\ \ \ | | | | | | | | | Add ActiveModel::Errors#codes | |||||
| * | | | Add ActiveModel::Errors#details | Wojciech Wnętrzak | 2015-01-20 | 1 | -2/+56 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To be able to return type of validator, one can now call `details` on Errors instance: ```ruby class User < ActiveRecord::Base validates :name, presence: true end ``` ```ruby user = User.new; user.valid?; user.errors.details => {name: [{error: :blank}]} ``` | |||||
* | | | | Fix test case class in the testing guide [ci skip] | Rafael Mendonça França | 2015-01-21 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Add missing options to Error Message Interpolation guide [CI skip] | Wojciech Wnętrzak | 2015-01-21 | 1 | -1/+2 | |
|/ / / | ||||||
* | | | Merge pull request #18576 from yui-knk/fix/autoload4 | Santiago Pastorino | 2015-01-18 | 1 | -3/+2 | |
|\ \ \ | | | | | | | | | [ci skip] Move a introduction of `Module.nesting` | |||||
| * | | | [ci skip] Move a introduction of `Module.nesting` | yui-knk | 2015-01-18 | 1 | -3/+2 | |
| | | | | | | | | | | | | | | | | | | | | Move a introduction of `Module.nesting` to the beginning of sentence. This change will help reader to try to dump `nesting`. | |||||
* | | | | remove reference to `Logger` core extensions from guide [ci skip] | yuuji.yaginuma | 2015-01-18 | 1 | -44/+0 | |
| | | | | ||||||
* | | | | [ci skip] fix positions of parentheses | yui-knk | 2015-01-18 | 1 | -5/+5 | |
|/ / / | ||||||
* | | | Merge pull request #18568 from vipulnsward/removed-deprecated-methods-from-docs | Zachary Scott | 2015-01-17 | 1 | -18/+2 | |
|\ \ \ | | | | | | | | | Removed documentation of deprecated removed methods | |||||
| * | | | Removed documentation of deprecated removed methods [ci skip] | Vipul A M | 2015-01-17 | 1 | -18/+2 | |
| | | | | ||||||
* | | | | [ci skip] Change to the passive voice | yui-knk | 2015-01-17 | 1 | -1/+1 | |
|/ / / | ||||||
* | | | Merge pull request #18493 from twoller/master | Yves Senn | 2015-01-17 | 1 | -10/+10 | |
|\ \ \ | | | | | | | | | Consistent anchor text in nav links, new image [ci skip] | |||||
| * | | | Use consistent anchor text throughout the guide. | Toby Woller | 2015-01-15 | 1 | -10/+10 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change all of anchor text in the nav links to `Back` and `Edit` Use `Edit | Back` on pages that use both links to conform to what scaffolding generates. Use consistent anchor text throughout the guide. Change all of anchor text in the nav links to `Back` and `Edit` Use `Edit | Back` on pages that use both links to conform to what scaffolding generates. | |||||
* | | | | Fixed extraneous quoting | Oge Nnadi | 2015-01-16 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Typo fix | Oge Nnadi | 2015-01-16 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Underscore typo [ci skip] | Jared Fine | 2015-01-16 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Adding tip about jQuery UJS [ci skip] | Andrey Nering | 2015-01-15 | 1 | -0/+3 | |
| |/ / |/| | | | | | | | | Reference #18533 | |||||
* | | | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2015-01-15 | 3 | -16/+65 | |
|\ \ \ | |_|/ |/| | | ||||||
| * | | Fixed spacing issues on code comments in ActiveJob Basics guide. | Vipul A M | 2015-01-14 | 1 | -7/+9 | |
| | | | | | | | | | | | | | | | Before: http://take.ms/z39h2 After: http://take.ms/Mo0G3 | |||||
| * | | GlobalID::Identification has been mixed into AR not AM | Cristian Bica | 2015-01-08 | 1 | -1/+1 | |
| | | | ||||||
| * | | Fix typo "you can be disable" | claudiob | 2015-01-06 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | Closes https://github.com/rails/rails/issues/18372 [ci skip] | |||||
| * | | Better example of `teardown` method in test guide | Kir Shatrov | 2015-01-03 | 1 | -4/+2 | |
| | | | | | | | | | rails/rails#18305, thanks for @dhh suggestion | |||||
| * | | Demonstrate example of `assert_emails` in testing guide | Kir Shatrov | 2015-01-03 | 1 | -3/+4 | |
| | | | | | | | | | rails/rails#18305, thanks for @dhh suggestion | |||||
| * | | Docs for controller test helpers | Kir Shatrov | 2015-01-03 | 1 | -0/+35 | |
| | | | | | | | | | | | | rails/rails#18305 | |||||
| * | | Avoid double negation in test guide | Kir Shatrov | 2015-01-03 | 1 | -1/+1 | |
| | | | | | | | | | | | | rails/rails#18305 | |||||
| * | | Section about testing xhr requests | Kir Shatrov | 2015-01-03 | 1 | -0/+13 | |
| | | | | | | | | | | | | rails/rails#18305 | |||||
* | | | Changed "in GitHub" to "on GitHub" [ci skip] | Prathamesh Sonpatki | 2015-01-14 | 1 | -1/+1 | |
| | | | | | | | | | | | | - Followup of https://github.com/rails/rails/pull/18503. | |||||
* | | | Merge pull request #18503 from vipulnsward/guides-in-on | Xavier Noria | 2015-01-14 | 50 | -50/+50 | |
|\ \ \ | | | | | | | | | Changed `IN` to `ON` in markdown renderer condition | |||||
| * | | | - Changed `IN` to `ON` in markdown renderer condition | Vipul A M | 2015-01-14 | 50 | -50/+50 | |
| | | | | | | | | | | | | | | | | - Changed `IN` to `ON` in all note sentences in guides. | |||||
* | | | | fix link in autoloading guide [ci skip] | yuuji.yaginuma | 2015-01-14 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Fix form_for guide binding a form to an object. | Derek Reeve | 2015-01-13 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The HTML generated using url: { action: :create} will not generate the form action "/articles/create", it should generate the form action "/articles" for a new object. | |||||
* | | | | Merge pull request #18490 from andreynering/security-guides-remove-resource | Abdelkader Boudih | 2015-01-13 | 1 | -1/+0 | |
|\ \ \ \ | | | | | | | | | | | Guides: Removing reference to blog that is not updated anymore [ci skip] | |||||
| * | | | | Guides: Removing reference to blog that is not updated anymore [ci skip] | Andrey Nering | 2015-01-13 | 1 | -1/+0 | |
| | | | | | ||||||
* | | | | | Merge pull request #18471 from ahmad-alkheat/master | Rafael Mendonça França | 2015-01-13 | 1 | -0/+6 | |
|\ \ \ \ \ | |/ / / / |/| | | | | Added the SQL equivalent of the find_by method. [ci skip] | |||||
| * | | | | Updated active_record_querying.md | Ahmad Al-kheat | 2015-01-12 | 1 | -0/+6 | |
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Added the SQL equivalent of the find_by method Update active_record_querying.md Update active_record_querying.md | |||||
* | | | | Merge pull request #18480 from karpah/patch-1 | Claudio B. | 2015-01-13 | 1 | -1/+1 | |
|\ \ \ \ | | | | | | | | | | | Update asset pipeline guide | |||||
| * | | | | Digesting is now enabled by default in development | Rebecca Skinner | 2015-01-13 | 1 | -1/+1 | |
| |/ / / | ||||||
* / / / | Change a to an for HTML word [ci skip] | Santosh Wadghule | 2015-01-13 | 1 | -1/+1 | |
|/ / / | ||||||
* | | | Merge pull request #18460 from mechanicles/a-to-an-for-xml | Xavier Noria | 2015-01-12 | 1 | -2/+2 | |
|\ \ \ | | | | | | | | | Change 'a' to 'an' for 'XML' word [ci skip] | |||||
| * | | | Change 'a' to 'an' for 'XML' word [ci skip] | Santosh Wadghule | 2015-01-12 | 1 | -2/+2 | |
| | | | | ||||||
* | | | | minor grammatical fix in documentation | Jade McGough | 2015-01-12 | 1 | -1/+1 | |
|/ / / | ||||||
* / / | Re-add section in SQL Caching | Jose Luis Duran | 2015-01-11 | 1 | -0/+4 | |
|/ / | | | | | | | | | | | This section was accidentally removed in 4b5e424441149cf0f61a8182f4a92999577ce59a, and partially re-added in dc14b893e5904acb37ac327478f3880f33094b7a. [ci skip] | |||||
* | | Add log_level options to configuration guide | Sammy Larbi | 2015-01-06 | 1 | -1/+1 | |
| | | ||||||
* | | reflects changes in 34cd7e2 in the index [ci skip] | Xavier Noria | 2015-01-05 | 1 | -3/+3 | |
| | | ||||||
* | | [guides] Added newer find_by syntax example in 4.2 release notes for ↵ | Gordon Chan | 2015-01-05 | 1 | -0/+3 | |
| | | | | | | | | Adequate Record [skip ci] | |||||
* | | Remove debugger support | Rafael Mendonça França | 2015-01-04 | 1 | -1/+0 | |
| | | | | | | | | | | bebugger doesn't work with Ruby 2.2 so we don't need to support it anymore |