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.
|
|
|
|
|
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
|
|
|
|
|
|
|
* https://github.com/rails/rails/tree/master/actionview
|
|
|
|
|
|
|
|
|
|
|
|
== 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
|
|
|
|
|
|
|
|
* http://api.rubyonrails.org
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
* https://groups.google.com/forum/?fromgroups#!forum/rubyonrails-core
|