aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorclaudiob <claudiob@gmail.com>2014-10-15 04:58:03 -0700
committerclaudiob <claudiob@gmail.com>2014-10-15 04:58:03 -0700
commitb0ecbc8e11ce170f159ec42b700d979547048e27 (patch)
tree0c89703bdd58c7f3184d4866486b31a886a473b8 /README.md
parente3207bdbba55f3806441f22b175557579bc0b051 (diff)
downloadrails-b0ecbc8e11ce170f159ec42b700d979547048e27.tar.gz
rails-b0ecbc8e11ce170f159ec42b700d979547048e27.tar.bz2
rails-b0ecbc8e11ce170f159ec42b700d979547048e27.zip
Link to ActiveModel’s README in "Welcome to Rails"
A link to the README of each module is included in "Welcome to Rails", only ActiveModel (and ActiveJob, see #17264) are missing. [ci skip]
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index d786914d6d..970b01ed67 100644
--- a/README.md
+++ b/README.md
@@ -13,10 +13,10 @@ Person, Post, etc.) and encapsulates the business logic that is specific to
your application. In Rails, database-backed model classes are derived from
`ActiveRecord::Base`. Active Record 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 module. You can read more about Active Record
-in its [README](activerecord/README.rdoc).
+methods. You can read more about Active Record in its [README](activerecord/README.rdoc).
+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 module. You can read more about Active Model in its [README](activemodel/README.rdoc).
The _Controller layer_ is responsible for handling incoming HTTP requests and
providing a suitable response. Usually this means returning HTML, but Rails controllers