summaryrefslogtreecommitdiff
path: root/benchmark/app_erb.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/app_erb.rb')
-rw-r--r--benchmark/app_erb.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/benchmark/app_erb.rb b/benchmark/app_erb.rb
new file mode 100644
index 0000000000..9a1cb2707f
--- /dev/null
+++ b/benchmark/app_erb.rb
@@ -0,0 +1,25 @@
+#
+# 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)
+}