2012-06-01 00:21:56 +08:00
|
|
|
= Action View
|
|
|
|
|
2013-08-01 03:44:17 +08: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-10 05:47:01 +08:00
|
|
|
You can read more about Action View in the {Action View Overview}[https://edgeguides.rubyonrails.org/action_view_overview.html] guide.
|
|
|
|
|
2012-06-01 00:21:56 +08:00
|
|
|
== Download and installation
|
|
|
|
|
|
|
|
The latest version of Action View can be installed with RubyGems:
|
|
|
|
|
2015-12-07 02:16:26 +08:00
|
|
|
$ gem install actionview
|
2012-06-01 00:21:56 +08:00
|
|
|
|
2017-11-29 02:27:43 +08:00
|
|
|
Source code can be downloaded as part of the Rails project on GitHub:
|
2012-06-01 00:21:56 +08:00
|
|
|
|
2021-01-20 04:43:24 +08:00
|
|
|
* https://github.com/rails/rails/tree/main/actionview
|
2012-06-01 00:21:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
== License
|
|
|
|
|
|
|
|
Action View is released under the MIT license:
|
|
|
|
|
2017-08-22 07:46:02 +08:00
|
|
|
* https://opensource.org/licenses/MIT
|
2012-06-01 00:21:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
== Support
|
|
|
|
|
|
|
|
API documentation is at
|
|
|
|
|
2019-03-08 19:36:16 +08:00
|
|
|
* https://api.rubyonrails.org
|
2012-06-01 00:21:56 +08:00
|
|
|
|
2017-11-29 02:27:43 +08:00
|
|
|
Bug reports for the Ruby on Rails project can be filed here:
|
2012-06-01 00:21:56 +08:00
|
|
|
|
|
|
|
* https://github.com/rails/rails/issues
|
2014-06-02 10:11:39 +08:00
|
|
|
|
|
|
|
Feature requests should be discussed on the rails-core mailing list here:
|
|
|
|
|
2020-03-26 14:21:37 +08:00
|
|
|
* https://discuss.rubyonrails.org/c/rubyonrails-core
|