aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/documents.yaml
diff options
context:
space:
mode:
authorutilum <oz@utilum.com>2018-06-28 11:40:53 +0200
committerutilum <oz@utilum.com>2018-06-28 11:40:53 +0200
commit7f6486f589b87fc230af524ecb1107583f557550 (patch)
treea0d6573150ef64b461ba3499e55399f2e3e37aa5 /guides/source/documents.yaml
parent5a1ea09062eaed78e21253a128d433a1beb745ad (diff)
downloadrails-7f6486f589b87fc230af524ecb1107583f557550.tar.gz
rails-7f6486f589b87fc230af524ecb1107583f557550.tar.bz2
rails-7f6486f589b87fc230af524ecb1107583f557550.zip
Break guides menu 'Digging Deeper' section in two
This list in the menu is currently long, and the order of the items not immediately obvious. I often find my self rescanning to find what I'm looking for, so I imagine that others do to.
Diffstat (limited to 'guides/source/documents.yaml')
-rw-r--r--guides/source/documents.yaml22
1 files changed, 13 insertions, 9 deletions
diff --git a/guides/source/documents.yaml b/guides/source/documents.yaml
index 5cddf79eeb..4dee34b1e7 100644
--- a/guides/source/documents.yaml
+++ b/guides/source/documents.yaml
@@ -65,17 +65,13 @@
url: routing.html
description: This guide covers the user-facing features of Rails routing. If you want to understand how to use routing in your own Rails applications, start here.
-
- name: Digging Deeper
+ name: Other Components
documents:
-
name: Active Support Core Extensions
url: active_support_core_extensions.html
description: This guide documents the Ruby core extensions defined in Active Support.
-
- name: Rails Internationalization (I18n) API
- url: i18n.html
- description: This guide covers how to add internationalization to your applications. Your application will be able to translate content to different languages, change pluralization rules, use correct date formats for each country, and so on.
- -
name: Action Mailer Basics
url: action_mailer_basics.html
description: This guide describes how to use Action Mailer to send and receive emails.
@@ -88,6 +84,18 @@
url: active_storage_overview.html
description: This guide covers how to attach files to your Active Record models.
-
+ name: Action Cable Overview
+ url: action_cable_overview.html
+ description: This guide explains how Action Cable works, and how to use WebSockets to create real-time features.
+
+-
+ name: Digging Deeper
+ documents:
+ -
+ name: Rails Internationalization (I18n) API
+ url: i18n.html
+ description: This guide covers how to add internationalization to your applications. Your application will be able to translate content to different languages, change pluralization rules, use correct date formats for each country, and so on.
+ -
name: Testing Rails Applications
url: testing.html
description: This is a rather comprehensive guide to the various testing facilities in Rails. It covers everything from 'What is a test?' to Integration Testing. Enjoy.
@@ -137,10 +145,6 @@
name: Using Rails for API-only Applications
url: api_app.html
description: This guide explains how to effectively use Rails to develop a JSON API application.
- -
- name: Action Cable Overview
- url: action_cable_overview.html
- description: This guide explains how Action Cable works, and how to use WebSockets to create real-time features.
-
name: Extending Rails