From c2f203dcdb74be163d86c3442b463355e234944d Mon Sep 17 00:00:00 2001 From: Felipe Tovar Date: Thu, 19 Apr 2018 14:23:02 -0500 Subject: [PATCH] [ci skip] Restore of links in RDOC_MAIN after an update of the file (#32644) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [ci skip] Update links in RDOC_MAIN and remove style of word rails in README * [ci skip] Update links in RDOC_MAIN and remove style of word rails in README [Felipe Tovar & Rafael Mendonça França] --- railties/RDOC_MAIN.rdoc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/railties/RDOC_MAIN.rdoc b/railties/RDOC_MAIN.rdoc index 096551cac09..a4a4b6b2359 100644 --- a/railties/RDOC_MAIN.rdoc +++ b/railties/RDOC_MAIN.rdoc @@ -15,11 +15,11 @@ application into three layers: Model, View, and Controller, each with a specific The Model layer represents the domain model (such as Account, Product, Person, Post, etc.) and encapsulates the business logic specific to your application. In \Rails, database-backed model classes are derived from -ActiveRecord::Base. {Active Record}[link:../activerecord/README.rdoc] allows you to present the data from +ActiveRecord::Base. {Active Record}[link:files/activerecord/README_rdoc.html] allows you to present the data from database rows as objects and embellish these data objects with business logic methods. Although most \Rails models are backed by a database, models can also be ordinary Ruby classes, or Ruby classes that implement a set of interfaces as provided by -the {Active Model}[link:../activemodel/README.rdoc] module. +the {Active Model}[link:files/activemodel/README_rdoc.html] module. == Controller layer @@ -29,7 +29,7 @@ can also generate XML, JSON, PDFs, mobile-specific views, and more. Controllers manipulate models, and render view templates in order to generate the appropriate HTTP response. In \Rails, incoming requests are routed by Action Dispatch to an appropriate controller, and controller classes are derived from ActionController::Base. Action Dispatch and Action Controller -are bundled together in {Action Pack}[link:../actionpack/README.rdoc]. +are bundled together in {Action Pack}[link:files/actionpack/README_rdoc.html]. == View layer @@ -37,19 +37,19 @@ The View layer is composed of "templates" that are responsible f appropriate representations of your application's resources. Templates can come in a variety of formats, but most view templates are \HTML with embedded Ruby code (ERB files). Views are typically rendered to generate a controller response, -or to generate the body of an email. In \Rails, View generation is handled by {Action View}[link:../actionview/README.rdoc]. +or to generate the body of an email. In \Rails, View generation is handled by {Action View}[link:files/actionview/README_rdoc.html]. == Frameworks and libraries -{Active Record}[link:../activerecord/README.rdoc], {Active Model}[link:../activemodel/README.rdoc], -{Action Pack}[link:../actionpack/README.rdoc], and {Action View}[link:../actionview/README.rdoc] can each be used independently outside \Rails. -In addition to that, \Rails also comes with {Action Mailer}[link:../actionmailer/README.rdoc], a library -to generate and send emails; {Active Job}[link:../activejob/README.md], a +{Active Record}[link:files/activerecord/README_rdoc.html], {Active Model}[link:files/activemodel/README_rdoc.html], +{Action Pack}[link:files/actionpack/README_rdoc.html], and {Action View}[link:files/actionview/README_rdoc.html] can each be used independently outside \Rails. +In addition to that, \Rails also comes with {Action Mailer}[link:files/actionmailer/README_rdoc.html], a library +to generate and send emails; {Active Job}[link:files/activejob/README_md.html], a framework for declaring jobs and making them run on a variety of queueing -backends; {Action Cable}[link:../actioncable/README.md], a framework to -integrate WebSockets with a \Rails application; {Active Storage}[link:../activestorage/README.md], +backends; {Action Cable}[link:files/actioncable/README_md.html], a framework to +integrate WebSockets with a \Rails application; {Active Storage}[link:files/activestorage/README_md.html], a library to attach cloud and local files to \Rails applications; -and {Active Support}[link:../activesupport/README.rdoc], a collection +and {Active Support}[link:files/activesupport/README_rdoc.html], a collection of utility classes and standard library extensions that are useful for \Rails, and may also be used independently outside \Rails.