summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/benchmark/bm_app_erb.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/benchmark/bm_app_erb.rb')
-rw-r--r--ruby_1_9_3/benchmark/bm_app_erb.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/ruby_1_9_3/benchmark/bm_app_erb.rb b/ruby_1_9_3/benchmark/bm_app_erb.rb
deleted file mode 100644
index 77c66a7949..0000000000
--- a/ruby_1_9_3/benchmark/bm_app_erb.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-#
-# Create many HTML strings with ERB.
-#
-
-require 'erb'
-
-data = DATA.read
-max = 15_000
-title = "hello world!"
-content = "hello world!\n" * 10
-
-max.times{
- ERB.new(data).result(binding)
-}
-
-__END__
-
-<html>
- <head> <%= title %> </head>
- <body>
- <h1> <%= title %> </h1>
- <p>
- <%= content %>
- </p>
- </body>
-</html>