From e0b401feebb49498e71a1f066ede9f8f3b91ece8 Mon Sep 17 00:00:00 2001 From: Prathamesh Sonpatki Date: Wed, 17 Feb 2016 12:03:10 +0530 Subject: Add Action Cable CHANGELOG in release notes [ci skip] --- guides/source/5_0_release_notes.md | 1 + 1 file changed, 1 insertion(+) (limited to 'guides/source') diff --git a/guides/source/5_0_release_notes.md b/guides/source/5_0_release_notes.md index 5ae78eba04..d380ba8fce 100644 --- a/guides/source/5_0_release_notes.md +++ b/guides/source/5_0_release_notes.md @@ -768,6 +768,7 @@ framework it is. Kudos to all of them. [action-pack]: https://github.com/rails/rails/blob/5-0-stable/actionpack/CHANGELOG.md [action-view]: https://github.com/rails/rails/blob/5-0-stable/actionview/CHANGELOG.md [action-mailer]: https://github.com/rails/rails/blob/5-0-stable/actionmailer/CHANGELOG.md +[action-cable]: https://github.com/rails/rails/blob/5-0-stable/actioncable/CHANGELOG.md [active-record]: https://github.com/rails/rails/blob/5-0-stable/activerecord/CHANGELOG.md [active-model]: https://github.com/rails/rails/blob/5-0-stable/activemodel/CHANGELOG.md [active-support]: https://github.com/rails/rails/blob/5-0-stable/activesupport/CHANGELOG.md -- cgit v1.2.3 From dd898fe6a015ab47405ac3851ba50ffd5bc1c22a Mon Sep 17 00:00:00 2001 From: kamal namdeo Date: Thu, 18 Feb 2016 12:38:07 +0530 Subject: Fix the language in engines guide --- guides/source/engines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guides/source') diff --git a/guides/source/engines.md b/guides/source/engines.md index db50ad278f..fd940f4084 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -402,7 +402,7 @@ module Blorgh end ``` -NOTE: The `ApplicationController` class being inherited from here is the +NOTE: The `ArticlesController` class inherits from `Blorgh::ApplicationController`, not an application's `ApplicationController`. The helper inside `app/helpers/blorgh/articles_helper.rb` is also namespaced: -- cgit v1.2.3 From 6890043f4c50ee97d608964e35568fe4a346ee40 Mon Sep 17 00:00:00 2001 From: kamal namdeo Date: Thu, 18 Feb 2016 20:48:19 +0530 Subject: [ci skip] fix suggested change-replace 'an' with 'the in Rails engine guide' --- guides/source/engines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guides/source') diff --git a/guides/source/engines.md b/guides/source/engines.md index fd940f4084..c5fc2f73b4 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -403,7 +403,7 @@ end ``` NOTE: The `ArticlesController` class inherits from -`Blorgh::ApplicationController`, not an application's `ApplicationController`. +`Blorgh::ApplicationController`, not the application's `ApplicationController`. The helper inside `app/helpers/blorgh/articles_helper.rb` is also namespaced: -- cgit v1.2.3