summaryrefslogtreecommitdiff
path: root/benchmark/app_uri.yml
blob: 1f7e49de51ab4594391f63bcdd30e5bb9a34b64f (plain)
1
2
3
4
5
6
7
8
9
10
11
benchmark:
  app_uri: |
    require 'uri'

    100_000.times{
      uri = URI.parse('http://www.ruby-lang.org')
      uri.scheme
      uri.host
      uri.port
    }
loop_count: 1