summaryrefslogtreecommitdiff
path: root/benchmark/app_erb.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/app_erb.yml')
-rw-r--r--benchmark/app_erb.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/benchmark/app_erb.yml b/benchmark/app_erb.yml
new file mode 100644
index 0000000000..8583858d20
--- /dev/null
+++ b/benchmark/app_erb.yml
@@ -0,0 +1,24 @@
+#
+# Create many HTML strings with ERB.
+#
+prelude: |
+ 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
+benchmark:
+ app_erb: ERB.new(data).result(binding)
+loop_count: 15000