summaryrefslogtreecommitdiff
path: root/benchmark/app_uri.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/app_uri.rb')
-rw-r--r--benchmark/app_uri.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/benchmark/app_uri.rb b/benchmark/app_uri.rb
new file mode 100644
index 0000000000..586edfd5dc
--- /dev/null
+++ b/benchmark/app_uri.rb
@@ -0,0 +1,8 @@
+require 'uri'
+
+100_000.times{
+ uri = URI.parse('http://www.ruby-lang.org')
+ uri.scheme
+ uri.host
+ uri.port
+}