summaryrefslogtreecommitdiff
path: root/benchmark/app_erb.yml
blob: 8583858d2006935ecac656a9bcf7a99c1dc07a1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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