aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/app_erb.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/app_erb.yml')
-rw-r--r--benchmark/app_erb.yml28
1 files changed, 0 insertions, 28 deletions
diff --git a/benchmark/app_erb.yml b/benchmark/app_erb.yml
deleted file mode 100644
index df0630585f..0000000000
--- a/benchmark/app_erb.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-benchmark:
- app_erb: |
- #
- # 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)
- }
-loop_count: 1