提交 a2194990 编写于 作者: C Carlos Antonio da Silva

Merge pull request #7669 from guilleiguaran/rename-rb-handler

Rename .rb template handler to .ruby to avoid conflicts with mustache classes
......@@ -33,7 +33,7 @@
*Sergey Nartimov*
* Add .rb template handler, this handler simply allows arbitrary Ruby code as a template. *Guillermo Iguaran*
* Add .ruby template handler, this handler simply allows arbitrary Ruby code as a template. *Guillermo Iguaran*
* Add `separator` option for `ActionView::Helpers::TextHelper#excerpt`:
......
......@@ -10,7 +10,7 @@ def self.extended(base)
base.register_default_template_handler :erb, ERB.new
base.register_template_handler :builder, Builder.new
base.register_template_handler :raw, Raw.new
base.register_template_handler :rb, :source.to_proc
base.register_template_handler :ruby, :source.to_proc
end
@@template_handlers = {}
......
......@@ -97,12 +97,12 @@ def test_render_raw_template_with_quotes
assert_equal %q;Here are some characters: !@#$%^&*()-="'}{`; + "\n", @view.render(:template => "plain_text_with_characters")
end
def test_render_rb_template_with_handlers
def test_render_ruby_template_with_handlers
assert_equal "Hello from Ruby code", @view.render(:template => "ruby_template")
end
def test_render_rb_template_inline
assert_equal '4', @view.render(:inline => "(2**2).to_s", :type => :rb)
def test_render_ruby_template_inline
assert_equal '4', @view.render(:inline => "(2**2).to_s", :type => :ruby)
end
def test_render_file_with_localization_on_context_level
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册