aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added missing active record configurations.wangjohn2013-09-251-0/+6
|
* Fix link_to return valueEarl J St Sauver2013-09-221-1/+1
| | | | | | The documentation is showing the link_to method as just returning the contents of the url_for method. It should be returning an "<a>" tag with the correct href set.
* use active voice and use more descriptive termsWeston Platter2013-09-221-1/+1
|
* `skiping` => `skipping`Vipul A M2013-09-171-1/+1
|
* Fix Show link on resourceVipul A M2013-09-171-1/+1
|
* incorrect urlSergio2013-09-161-1/+1
| | | incorrect url
* incorrect urls Sergio2013-09-161-2/+2
| | | I've found two incorrects urls for adding ':' at the end of the url
* surplus : in attachment_fu pluginSergio2013-09-151-1/+1
| | | surplus ':' character in url
* EncryptedCookieStore => CookieStore [ci skip]Rashmi Yadav2013-09-131-1/+1
|
* asset_url => asset-url in sass-rails docs [ci skip]Rashmi Yadav2013-09-131-1/+1
|
* Removed doc of diff method [ci skip]Rashmi Yadav2013-09-131-38/+0
|
* Updated guides with latest method [ci skip]Rashmi Yadav2013-09-131-2/+2
|
* Updated the file path [ci skip]Rashmi Yadav2013-09-131-4/+4
|
* Updated with latest method [ci skip]Rashmi Yadav2013-09-131-4/+5
|
* Revert ""generates" applies to "collection radio" so it should be singular"Rafael Mendonça França2013-09-121-2/+2
| | | | | | This reverts commit faeb33dc036e4f707491c91a23ee3e990573141b. Reason: Code changes can't be done on docrails
* take out reference to previous versions of RailsWaynn Lue2013-09-121-3/+1
|
* "generates" applies to "collection radio" so it should be singularWaynn Lue2013-09-121-2/+2
|
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2013-09-1311-129/+293
|\
| * Wrap the guides in 80 columns [ci skip]Rafael Mendonça França2013-09-121-101/+260
| |
| * Merge pull request #163 from mogetutu/masterRafael Mendonça França2013-09-121-1/+1
| |\ | | | | | | Added quotes when defining the precision for the `decimal` fields
| | * Added quotes when defining the precision for the `decimal` fieldsmogetutu2013-09-121-1/+1
| |/ | | | | | | | | | | | | | | | | | | | | | | | | before: ```bash $ rails generate migration AddDetailsToProducts price:decimal{5,2} supplier:references{polymorphic} ``` after: ```bash $ rails generate migration AddDetailsToProducts 'price:decimal{5,2}' supplier:references{polymorphic} ```
| * Plural of Deer not deerSergio2013-09-101-1/+1
| | | | | | Change the plural of Deer word in the naming conventions
| * html generated for a search formSergio2013-09-091-1/+1
| | | | | | There's a div that is generated in rails for a default search form and is not includen in the example.
| * Change documentation to consistently refer to the same objectEarl J St Sauver2013-09-081-8/+8
| | | | | | | | | | | | The documentation in this section is referring to a profile, so the resource that's created should probably also be a profile of some sort.
| * Blacklist refferenced in docs is actually whitelistEarl J St Sauver2013-09-081-2/+2
| | | | | | | | | | | | The docs refference a blacklist, but really what's being described is a whitelist. Anything that matches the constraint gets through to the path.
| * added # or commentSergio2013-09-051-1/+1
| |
| * Review the changes made on 90155b4e28a3887dce9428e9df150ede3d6c7465Rafael Mendonça França2013-09-041-5/+9
| |
| * Client.exists?(1,2,3) and Client.exists?([1,2,3]) does not workSergio2013-09-051-3/+3
| | | | | | | | The right command for doing that is Client.exists?id:[1,2,3] Exists does not work like find method, in find method you can do Person.find(1, 2, 6) or Person.find([7, 17]) but not Person.exists?(1,2,3) or Person.exists?([1,2,3])
| * Example of Join modelsSergio2013-09-041-1/+1
| | | | | | In the example of join models, there are five models but in the explanation only consider Category, Post, Comment and Guest.
| * `implemention` => `implementation`Vipul A M2013-09-031-1/+1
| |
| * `attibutes` => `attributes`Vipul A M2013-09-031-1/+1
| |
| * Be assertive about adding `[ci skip]` messageVipul A M2013-09-031-1/+1
| |
| * 4.0 Release notes should point to 4.0 ChangelogVipul A M2013-09-031-6/+6
| |
| * Fix spacing issueVipul A M2013-09-031-0/+1
| |
* | Merge pull request #12208 from mjhoy/patch-1Rafael Mendonça França2013-09-121-4/+0
|\ \ | | | | | | remove outdated docs
| * | remove outdated docsMichael Hoy2013-09-121-4/+0
|/ /
* | Merge pull request #12196 from h-lame/fix-activesupport-cache-filestore-cleanupRafael Mendonça França2013-09-123-1/+18
|\ \ | | | | | | Fix FileStore#cleanup to no longer rely on missing each_key method
| * | Fix FileStore#cleanup to no longer rely on missing each_key methodMurray Steele2013-09-113-1/+18
| | |
* | | Merge pull request #12207 from chancancode/fix_json_loadRafael Mendonça França2013-09-122-2/+14
|\ \ \ | | | | | | | | Enabled quirks mode on JSON.parse, fixes broken test in af9caae
| * | | Enabled quirks mode on JSON.parse, fixes broken test in af9caaeGodfrey Chan2013-09-122-2/+14
|/ / / | | | | | | | | | | | | | | | | | | It turns out that ActionPack depends on the decoder to parse JSON "fragments" (e.g. '"a string"', '1', 'null', etc), so we need to enable quirks mode on JSON.parse. Also added coverage on the decoder side to prevent regression.
* | | Write the right CHANGELOG entry for #11603Rafael Mendonça França2013-09-121-1/+1
| | | | | | | | | | | | [ci skip]
* | | Merge pull request #11603 from ↵Rafael Mendonça França2013-09-123-2/+10
|\ \ \ | | | | | | | | | | | | | | | | | | | | jetthoughts/join_strings_instead_of_contactination Cleanup: replace String concatenation by joining for excerpt helper
| * | | Cleanup of excerpt helperPaul Nikitochkin2013-09-063-2/+10
| | | | | | | | | | | | | | | | | | | | * replaced String concatenation by joining * separator has default value to '', even it is nil
* | | | Merge pull request #12206 from harshadsabne/masterRafael Mendonça França2013-09-121-3/+3
|\ \ \ \ | | | | | | | | | | Update 4_0_release_notes.md
| * | | | Update 4_0_release_notes.mdHarshad Sabne2013-09-121-3/+3
|/ / / / | | | | | | | | Active support --> Deprecations Code highlighted.
* | | | Disable prepared statements in the unprepared_statement blockRafael Mendonça França2013-09-121-2/+3
| | | |
* | | | Fix typo on instance variable get callCarlos Antonio da Silva2013-09-121-1/+1
| | | |
* | | | Merge pull request #12205 from claudiob/remove-unused-raw-email-fixturesCarlos Antonio da Silva2013-09-1215-736/+0
|\ \ \ \ | | | | | | | | | | Remove unused raw email fixtures
| * | | | Remove unused raw email fixturesclaudiob2013-09-1215-736/+0
|/ / / / | | | | | | | | | | | | The tests that used the raw_email_* fixtures were removed in d500ad3
* | | | Merge pull request #12201 from chancancode/json_loadJeremy Kemper2013-09-112-3/+16
|\ \ \ \ | | | | | | | | | | Replace JSON.load with JSON.parse