Action View is the component of Rails that handles rendering views and templates. It works with Action Controller to separate the logic of a request from the rendering of the response. Views are written using templates that can be written in ERB or Builder formats. Partials and layouts allow breaking templates into reusable pieces. Action View provides helpers for forms, dates, numbers, assets and more to make working with models and templates easier.
Related topics: