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