diff --git a/guides/source/action_cable_overview.md b/guides/source/action_cable_overview.md index 0ba36cb2d2fd063cb10b52b58c676fd9fa8265a7..500fee240fa3bc467dc8cac58403d86ece99d754 100644 --- a/guides/source/action_cable_overview.md +++ b/guides/source/action_cable_overview.md @@ -15,8 +15,8 @@ After reading this guide, you will know: -------------------------------------------------------------------------------- -Introduction ------------- +What is Action Cable? +--------------------- Action Cable seamlessly integrates [WebSockets](https://en.wikipedia.org/wiki/WebSocket) with the rest of your @@ -57,8 +57,8 @@ As you can see, this is a fairly deep architectural stack. There's a lot of new terminology to identify the new pieces, and on top of that, you're dealing with both client and server side reflections of each unit. -What is Pub/Sub ---------------- +What is Pub/Sub? +---------------- [Pub/Sub](https://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern), or Publish-Subscribe, refers to a message queue paradigm whereby senders of diff --git a/guides/source/action_mailbox_basics.md b/guides/source/action_mailbox_basics.md index b0f9662d256d1d7130eebb35bea36afc72f5e5cd..2bc1ccfc43ddc104e2015d10f64564aa9a882496 100644 --- a/guides/source/action_mailbox_basics.md +++ b/guides/source/action_mailbox_basics.md @@ -15,8 +15,8 @@ After reading this guide, you will know: -------------------------------------------------------------------------------- -Introduction ------------- +What is Action Mailbox? +----------------------- Action Mailbox routes incoming emails to controller-like mailboxes for processing in Rails. It ships with ingresses for Mailgun, Mandrill, Postmark, diff --git a/guides/source/action_mailer_basics.md b/guides/source/action_mailer_basics.md index b6d757713966af22f07fb69bbf41f17f8cc153e2..afdee740ff3c3599633c6acc852024350195c792 100644 --- a/guides/source/action_mailer_basics.md +++ b/guides/source/action_mailer_basics.md @@ -16,8 +16,8 @@ After reading this guide, you will know: -------------------------------------------------------------------------------- -Introduction ------------- +What is Action Mailer? +---------------------- Action Mailer allows you to send emails from your application using mailer classes and views. diff --git a/guides/source/action_text_overview.md b/guides/source/action_text_overview.md index a714ab1a1b9842a917674364ed657412fc5fffe0..2e42259175bcf6c24c6e33321b5924e7989cbd35 100644 --- a/guides/source/action_text_overview.md +++ b/guides/source/action_text_overview.md @@ -14,8 +14,8 @@ After reading this guide, you will know: -------------------------------------------------------------------------------- -Introduction ------------- +What is Action Text? +-------------------- Action Text brings rich text content and editing to Rails. It includes the [Trix editor](https://trix-editor.org) that handles everything from formatting diff --git a/guides/source/active_job_basics.md b/guides/source/active_job_basics.md index eff7476eb12b359ef9b888adcf146b7c8301a5bc..4d90b95a8a6fd1e2f7776137e5da81a35b7d9908 100644 --- a/guides/source/active_job_basics.md +++ b/guides/source/active_job_basics.md @@ -16,8 +16,8 @@ After reading this guide, you will know: -------------------------------------------------------------------------------- -Introduction ------------- +What is Active Job? +------------------- Active Job is a framework for declaring jobs and making them run on a variety of queuing backends. These jobs can be everything from regularly scheduled diff --git a/guides/source/active_model_basics.md b/guides/source/active_model_basics.md index 114a185808b4853725790b8841142046968036e7..d90927372afb4e8c4490abc992e78449c5702ec7 100644 --- a/guides/source/active_model_basics.md +++ b/guides/source/active_model_basics.md @@ -17,8 +17,8 @@ After reading this guide, you will know: -------------------------------------------------------------------------------- -Introduction ------------- +What is Active Model? +--------------------- Active Model is a library containing various modules used in developing classes that need some features present on Active Record.