diff options
author | Zachary Scott <e@zzak.io> | 2014-09-02 09:33:53 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-09-02 09:33:53 -0700 |
commit | c247aa4cf9772f8ddedc79a01c65b8360de1700a (patch) | |
tree | 2ba3324af0b5e3e55a8401cee1095f3d86b72c5a | |
parent | e9058482f0ca2ac8ecdf972605e7fbb97ee42bfe (diff) | |
parent | afb230ec93bee6e6475a51f17a13df72a72e703d (diff) | |
download | rails-c247aa4cf9772f8ddedc79a01c65b8360de1700a.tar.gz rails-c247aa4cf9772f8ddedc79a01c65b8360de1700a.tar.bz2 rails-c247aa4cf9772f8ddedc79a01c65b8360de1700a.zip |
Merge pull request #16773 from cirosantilli/erb-erubis
Clarify Rails uses erubis not stdlin ERB. [ci skip]
-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 # |