mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
3efcb74036
to improve the accuracy of measurement by stop using block. benchmark/app_erb.rb -> benchmark/app_erb.yml: renamed and revised benchmark/erb_render.rb -> benchmark/erb_render.yml: ditto benchmark/README.md: follow renames git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63941 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
24 lines
452 B
YAML
24 lines
452 B
YAML
prelude: |
|
|
require 'erb'
|
|
|
|
data = <<erb
|
|
<html>
|
|
<head> <%= title %> </head>
|
|
<body>
|
|
<h1> <%= title %> </h1>
|
|
<p>
|
|
<%= content %>
|
|
</p>
|
|
</body>
|
|
</html>
|
|
erb
|
|
|
|
title = "hello world!"
|
|
content = "hello world!\n" * 10
|
|
|
|
src = "def self.render(title, content); #{ERB.new(data).src}; end"
|
|
mod = Module.new
|
|
mod.instance_eval(src, "(ERB)")
|
|
benchmark:
|
|
erb_render: mod.render(title, content)
|
|
loop_count: 1500000
|