From afb230ec93bee6e6475a51f17a13df72a72e703d Mon Sep 17 00:00:00 2001 From: Ciro Santilli Date: Tue, 2 Sep 2014 18:12:04 +0200 Subject: Clarify Rails uses erubis not stdlin ERB. [ci skip] --- actionview/lib/action_view/base.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'actionview/lib/action_view/base.rb') 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 .erb extension then it uses a mixture of ERB - # (included in Ruby) and HTML. If the template file has a .builder 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 .builder extension then Jim Weirich's Builder::XmlMarkup library is used. # # == ERB # -- cgit v1.2.3 From 247cc94574cf92a9d04b37291088e3ba74ede4d7 Mon Sep 17 00:00:00 2001 From: Ciro Santilli Date: Tue, 2 Sep 2014 19:09:42 +0200 Subject: Shorten ActionView::Base doc summary line. [ci skip] --- actionview/lib/action_view/base.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'actionview/lib/action_view/base.rb') diff --git a/actionview/lib/action_view/base.rb b/actionview/lib/action_view/base.rb index e9843eeb08..d1bade0d3d 100644 --- a/actionview/lib/action_view/base.rb +++ b/actionview/lib/action_view/base.rb @@ -10,9 +10,10 @@ require 'action_view/lookup_context' module ActionView #:nodoc: # = Action View Base # - # Action View templates can be written in several ways. If the template file has a .erb extension then it uses a mixture of ERB - # (not the one the Ruby stdlib, but the erubis[https://rubygems.org/gems/erubis] implementation) and HTML. - # If the template file has a .builder extension then Jim Weirich's Builder::XmlMarkup library is used. + # Action View templates can be written in several ways. + # If the template file has a .erb extension, then it uses the erubis[https://rubygems.org/gems/erubis] + # template system which can embed Ruby into an HTML document. + # If the template file has a .builder extension, then Jim Weirich's Builder::XmlMarkup library is used. # # == ERB # -- cgit v1.2.3