aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2015-07-28 20:23:15 +0900
committeryui-knk <spiketeika@gmail.com>2015-07-28 20:23:15 +0900
commit818427caf1acbad3c75f9b926285ccd3bb6d9291 (patch)
tree18c6b00010a70c0c8b302330c0793025bc4c4b5f
parenta74fbb2972bb161c553d7a5bd3a13299de6c7927 (diff)
downloadrails-818427caf1acbad3c75f9b926285ccd3bb6d9291.tar.gz
rails-818427caf1acbad3c75f9b926285ccd3bb6d9291.tar.bz2
rails-818427caf1acbad3c75f9b926285ccd3bb6d9291.zip
[ci skip] Now Action View is completely separated from Action Pack
-rw-r--r--guides/source/action_view_overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md
index 98c6cbd540..e23e0ea66c 100644
--- a/guides/source/action_view_overview.md
+++ b/guides/source/action_view_overview.md
@@ -15,7 +15,7 @@ After reading this guide, you will know:
What is Action View?
--------------------
-Action View and Action Controller are the two major components of Action Pack. In Rails, web requests are handled by Action Pack, which splits the work into a controller part (performing the logic) and a view part (rendering a template). Typically, Action Controller will be concerned with communicating with the database and performing CRUD actions where necessary. Action View is then responsible for compiling the response.
+In Rails, web requests are handled by Action Controller and Action View. Typically, Action Controller will be concerned with communicating with the database and performing CRUD actions where necessary. Action View is then responsible for compiling the response.
Action View templates are written using embedded Ruby in tags mingled with HTML. To avoid cluttering the templates with boilerplate code, a number of helper classes provide common behavior for forms, dates, and strings. It's also easy to add new helpers to your application as it evolves.