diff options
author | Ciro Santilli <ciro.santilli@gmail.com> | 2014-09-02 18:12:04 +0200 |
---|---|---|
committer | Ciro Santilli <ciro.santilli@gmail.com> | 2014-09-02 18:12:04 +0200 |
commit | afb230ec93bee6e6475a51f17a13df72a72e703d (patch) | |
tree | 2ba3324af0b5e3e55a8401cee1095f3d86b72c5a /actionview | |
parent | e9058482f0ca2ac8ecdf972605e7fbb97ee42bfe (diff) | |
download | rails-afb230ec93bee6e6475a51f17a13df72a72e703d.tar.gz rails-afb230ec93bee6e6475a51f17a13df72a72e703d.tar.bz2 rails-afb230ec93bee6e6475a51f17a13df72a72e703d.zip |
Clarify Rails uses erubis not stdlin ERB. [ci skip]
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/lib/action_view/base.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actionview/lib/action_view/base.rb b/actionview/lib/action_view/base.rb index 86c55ffb51..e9843eeb08 100644 --- a/actionview/lib/action_view/base.rb +++ b/actionview/lib/action_view/base.rb @@ -11,7 +11,8 @@ module ActionView #:nodoc: # = Action View Base # # Action View templates can be written in several ways. If the template file has a <tt>.erb</tt> extension then it uses a mixture of ERB - # (included in Ruby) and HTML. If the template file has a <tt>.builder</tt> extension then Jim Weirich's Builder::XmlMarkup library is used. + # (not the one the Ruby stdlib, but the erubis[https://rubygems.org/gems/erubis] implementation) and HTML. + # If the template file has a <tt>.builder</tt> extension then Jim Weirich's Builder::XmlMarkup library is used. # # == ERB # |