From 225e95fe830494bf929a09f96ac518534e8b67fd Mon Sep 17 00:00:00 2001 From: ko1 Date: Fri, 28 Sep 2007 03:53:34 +0000 Subject: * benchmark/bm_app_erb.rb: added. * benchmark/bm_io_file_(create|read|write).rb: added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- benchmark/bm_app_erb.rb | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 benchmark/bm_app_erb.rb (limited to 'benchmark/bm_app_erb.rb') diff --git a/benchmark/bm_app_erb.rb b/benchmark/bm_app_erb.rb new file mode 100644 index 0000000000..c4fcfac887 --- /dev/null +++ b/benchmark/bm_app_erb.rb @@ -0,0 +1,26 @@ +# +# Create many HTML strings with ERB. +# + +require 'erb' + +data = DATA.read +max = 5_000 +title = "hello world!" +content = "hello world!\n" * 10 + +max.times{ + ERB.new(data).result(binding) +} + +__END__ + + + <%= title %> + +

<%= title %>

+

+ <%= content %> +

+ + -- cgit v1.2.3