diff options
author | Godfrey Chan <godfreykfc@gmail.com> | 2015-09-26 23:05:47 -0700 |
---|---|---|
committer | Godfrey Chan <godfreykfc@gmail.com> | 2015-09-26 23:05:47 -0700 |
commit | 210f33c477e950ad44e66b47da794469ce3b5e64 (patch) | |
tree | 27a6b8528320fdfebcea01cba4e802da6471cb81 | |
parent | 1d02cba939965272483a4bed8fe3d7dbabeafdaf (diff) | |
parent | 7ec1289e70fee79ee8e67a80c657b15c04459fbf (diff) | |
download | rails-210f33c477e950ad44e66b47da794469ce3b5e64.tar.gz rails-210f33c477e950ad44e66b47da794469ce3b5e64.tar.bz2 rails-210f33c477e950ad44e66b47da794469ce3b5e64.zip |
Merge pull request #21784 from yui-knk/fix_reademe_rails
[ci skip] Add `Active Model` to a list of independently used modules.
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ Ruby code (ERB files). Views are typically rendered to generate a controller res or to generate the body of an email. In Rails, View generation is handled by Action View. You can read more about Action View in its [README](actionview/README.rdoc). -Active Record, Action Pack, and Action View can each be used independently outside Rails. +Active Record, Active Model, Action Pack, and Action View can each be used independently outside Rails. In addition to them, Rails also comes with Action Mailer ([README](actionmailer/README.rdoc)), a library to generate and send emails; Active Job ([README](activejob/README.md)), a framework for declaring jobs and making them run on a variety of queueing |