aboutsummaryrefslogtreecommitdiffstats
path: root/guides
Commit message (Collapse)AuthorAgeFilesLines
* [ci skip] Correct the stylesheet name used in the guide.Alec Clarke2019-05-021-1/+1
| | | | | | | | | In the Action Text guides, `app/assets/stylesheets/actiontext.css` is specified as the file used to style the Action Text editor and content but the actual file generated from `rails action_text:install` is `app/assets/stylesheets/actiontext.scss`. This change simply corrects the file extension shown in the guide.
* Add Action Cable Release Notes [ci skip]Alex Kitchens2019-05-021-11/+30
| | | | Co-Authored-By: प्रथमेश Sonpatki <csonpatki@gmail.com>
* Update guides/source/6_0_release_notes.mdConnor Shea2019-05-021-1/+1
| | | Co-Authored-By: prathamesh-sonpatki <csonpatki@gmail.com>
* Added release notes for Active Support [ci skip]Prathamesh Sonpatki2019-05-021-0/+186
|
* Update asset compression text [ci skip]Sharang Dashputre2019-05-021-1/+1
|
* Merge pull request #36149 from alexcameron89/add_active_storage_rnRafael França2019-05-011-2/+60
|\ | | | | Add Release Notes for Active Storage
| * Add Release Notes for Active Storage [ci skip]Alex Kitchens2019-05-011-2/+60
| | | | | | | | Co-authored-by: Abhay Nikam <nikam.abhay1@gmail.com>
* | Merge pull request #36155 from prathamesh-sonpatki/am-release-notesRafael França2019-05-011-0/+24
|\ \ | | | | | | Active Model release notes [ci skip]
| * | Active Model release notes [ci skip]Prathamesh Sonpatki2019-05-011-0/+24
| |/
* | Merge pull request #36157 from prathamesh-sonpatki/getting-started-updatesRafael França2019-05-011-5/+3
|\ \ | | | | | | Updates to getting started per Rails 6.0 changes [ci skip]
| * | Updates to getting started per Rails 6.0 changes [ci skip]Prathamesh Sonpatki2019-05-011-5/+3
| |/
* / Remove dynamic_form gem references in guidesCarles Jove i Buxeda2019-04-301-21/+0
|/ | | | This gem has not been updated since April 2014 and 2 of the 4 methods it introduces have been broken since Rails 4
* Action Mailer release notes [ci skip]Prathamesh Sonpatki2019-04-301-0/+33
|
* Merge pull request #36130 from alexcameron89/add_action_view_rnप्रथमेश Sonpatki2019-04-301-0/+53
|\ | | | | [ci skip] Add 6.0 Release Notes for Action View
| * [ci skip] Add 6.0 Release Notes for Action ViewAlex Kitchens2019-04-291-0/+53
| | | | | | | | I've added release notes based off of the CHANGELOG for Action View.
* | Fix incorrect url in guide [ci skip]Robin Fisher2019-04-291-1/+1
|/ | | The example functional test lists the 'create' route as article_url rather than articles_url
* fixes typo in guide [ci skip]Xavier Noria2019-04-281-1/+1
|
* new config to opt-out from adding app directories to $LOAD_PATHXavier Noria2019-04-281-0/+2
|
* [ci skip] Update the guide's model generator output.Alec Clarke2019-04-271-4/+7
| | | | | | | The model generator code sample used in the command line guides was displaying an outdated output for the generator's usage. This change updates the sample to mirror what's currently output when running `$rails generate model`.
* [ci skip] Add 6.0 Release Notes for Action PackAlex Kitchens2019-04-261-0/+68
| | | | | | I've gone through the CHANGELOG for Action Pack, pulled out anything that was backported, rephrased some of the descriptions and found their PR's/commits as links.
* [ci skip] Get npm just the way they like itKasper Timm Hansen2019-04-251-1/+1
|
* [ci skip] Remove à la just like that.Kasper Timm Hansen2019-04-251-1/+2
|
* [ci skip] Documentation pass of upgrading guide.Kasper Timm Hansen2019-04-251-14/+14
|
* Update bug report templatesRyuta Kamizono2019-04-255-8/+8
| | | | Bump gem version to 6.0.0.rc1.
* Adds documentation for has_one touch option after #35869 [ci skip]Abhay Nikam2019-04-251-2/+25
|
* Merge pull request #32313 from lulalala/model_error_as_objectRafael França2019-04-241-6/+6
|\ | | | | Model error as object
| * Raise deprecation for calling `[:f] = 'b'` or `[:f] << 'b'`lulalala2019-03-311-6/+6
| | | | | | | | Revert some tests to ensure back compatibility
* | Start Rails 6.1 developmentRafael Mendonça França2019-04-241-33/+1
| |
* | Merge pull request #36066 from st0012/update-controller-cache-docRafael França2019-04-231-2/+2
|\ \ | | | | | | Update document about perform_caching's default value [ci skip]
| * | Update document about perform_caching's default valuest00122019-04-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clarify that both `config.action_controller.perform_caching` and `config.action_mailer.perform_caching`'s default are `true`. This default is set in `AbstractController::Caching`. One can verify this by commenting out all ``` @controller.perform_caching = true ``` in `actionpack/test/controller/caching_test.rb` and run the tests. They should still pass.
* | | Make docs on form_with_generates_ids config option match the valueDavid Shaffer2019-04-231-1/+1
|/ / | | | | | | [skip ci]
* | Merge pull request #36063 from ↵Rafael França2019-04-231-8/+0
|\ \ | | | | | | | | | | | | albertoalmagro/finish-documentation-for-after-save-commit Remove reminiscences from previous documentation
| * | Remove reminiscences from previous documentation [ci skip]Alberto Almagro2019-04-231-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In #35861 documentation for `after_save_commit` was added, but also old documentation was adapted. I think adapting the old documentation is not necessary because there are already examples for `after_commit` on `:destroy` above. On top of that the action invoked by the callback on `:destroy` (`:log_user_saved_to_db`) talks about saving when the object is destroyed, which can be misleading. As I believe the documentation added by #35861 is already enough this patch removes the modified part, which made sense before adding docs for `after_save_commit` but is already covered by other parts of this guide.
* | | Merge pull request #36060 from st0012/fix-35602-docRafael França2019-04-231-0/+9
|\ \ \ | | | | | | | | Add ActionController::Caching into api app's document [ci skip]
| * | | Add ActionController::Caching into api app's documentst00122019-04-231-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Rails doesn't support view caching in api controllers by default but the document didn't clearerly declare this nor the manual config needed after including the module manually. So we'll see people get confused like #35602.
* | | | Add PR link for Active Storage updating release note entry [ci skip]Abhay Nikam2019-04-231-0/+1
| |/ / |/| |
* | | [ci skip] Active Storage: updating associations replacesKasper Timm Hansen2019-04-221-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In Rails updating an Active Storage relation will now replace the entire association instead of merely adding to it. https://github.com/rails/rails/issues/35817#issuecomment-485512520 Fixes #35817 cc @georgeclaghorn
* | | Fix typo by changing 'for' to 'from'Saheed Oladele2019-04-211-1/+1
| | |
* | | Add release notes for changes in the guides for Rails 6 [ci skip] (#36046)प्रथमेश Sonpatki2019-04-201-0/+9
| | |
* | | Merge pull request #35738 from gmcgibbon/aj_assert_drop_usec_docsGannon McGibbon2019-04-201-0/+19
|\ \ \ | |/ / |/| | ActiveJob time argument assertion documentation
| * | Add section on asserting time args for jobsGannon McGibbon2019-03-251-0/+19
| | |
* | | Mention more ActiveStorage hooks in Active Support Instrumentation guide [ci ↵Younes SERRAJ2019-04-171-0/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | skip] Hooks added: - `service_download_chunk.active_storage` - `service_update_metadata.active_storage` - `preview.active_storage`
* | | Prefer to indent and no blank line after private/protected [ci skip]Ryuta Kamizono2019-04-171-1/+1
| | |
* | | [ci skip] More asset guide touch upsKasper Timm Hansen2019-04-171-4/+5
| | |
* | | Merge pull request #35994 from ↵Kasper Timm Hansen2019-04-171-14/+6
|\ \ \ | | | | | | | | | | | | | | | | soartec-lab/update_guide_asset_pipeline_change_default Guide updated in line with changes in rails commands [skip ci]
| * | | Guide updated in line with changes in rails commands [skip ci]soartec-lab2019-04-161-14/+6
| | | |
* | | | Update the generate command sample codes [skip ci]soartec-lab2019-04-171-6/+5
|/ / /
* | | Merge pull request #35927 from arbox/masterRafael França2019-04-151-0/+5
|\ \ \ | | | | | | | | Add section on PostgreSQL to the guides index [ci skip]
| * | | Mark the section on PostgreSQL to be work in progress [ci skip]Andrei Beliankou2019-04-121-0/+1
| | | |
| * | | Add section on PostgreSQL to the guides index [ci skip]Andrei Beliankou2019-04-101-0/+4
| | | |