2012-05-31 12:21:56 -04:00
|
|
|
= Action View
|
|
|
|
|
2013-07-31 15:44:17 -04:00
|
|
|
Action View is a framework for handling view template lookup and rendering, and provides
|
|
|
|
view helpers that assist when building HTML forms, Atom feeds and more.
|
|
|
|
Template formats that Action View handles are ERB (embedded Ruby, typically
|
|
|
|
used to inline short Ruby snippets inside HTML), and XML Builder.
|
|
|
|
|
2019-03-09 16:47:01 -05:00
|
|
|
You can read more about Action View in the {Action View Overview}[https://edgeguides.rubyonrails.org/action_view_overview.html] guide.
|
|
|
|
|
2012-05-31 12:21:56 -04:00
|
|
|
== Download and installation
|
|
|
|
|
|
|
|
The latest version of Action View can be installed with RubyGems:
|
|
|
|
|
2015-12-06 13:16:26 -05:00
|
|
|
$ gem install actionview
|
2012-05-31 12:21:56 -04:00
|
|
|
|
2017-11-28 13:27:43 -05:00
|
|
|
Source code can be downloaded as part of the Rails project on GitHub:
|
2012-05-31 12:21:56 -04:00
|
|
|
|
2021-01-19 15:43:24 -05:00
|
|
|
* https://github.com/rails/rails/tree/main/actionview
|
2012-05-31 12:21:56 -04:00
|
|
|
|
|
|
|
|
|
|
|
== License
|
|
|
|
|
|
|
|
Action View is released under the MIT license:
|
|
|
|
|
2017-08-21 19:46:02 -04:00
|
|
|
* https://opensource.org/licenses/MIT
|
2012-05-31 12:21:56 -04:00
|
|
|
|
|
|
|
|
|
|
|
== Support
|
|
|
|
|
|
|
|
API documentation is at
|
|
|
|
|
2019-03-08 06:36:16 -05:00
|
|
|
* https://api.rubyonrails.org
|
2012-05-31 12:21:56 -04:00
|
|
|
|
2017-11-28 13:27:43 -05:00
|
|
|
Bug reports for the Ruby on Rails project can be filed here:
|
2012-05-31 12:21:56 -04:00
|
|
|
|
|
|
|
* https://github.com/rails/rails/issues
|
2014-06-01 22:11:39 -04:00
|
|
|
|
|
|
|
Feature requests should be discussed on the rails-core mailing list here:
|
|
|
|
|
2020-03-26 02:21:37 -04:00
|
|
|
* https://discuss.rubyonrails.org/c/rubyonrails-core
|