Skip to content

Commit

Permalink
[ci skip] Now Action View is completely separated from Action Pack
Browse files Browse the repository at this point in the history
  • Loading branch information
yui-knk committed Jul 28, 2015
1 parent a74fbb2 commit 818427c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/source/action_view_overview.md
Expand Up @@ -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.

Expand Down

0 comments on commit 818427c

Please sign in to comment.