summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/benchmark/bm_app_uri.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/benchmark/bm_app_uri.rb')
-rw-r--r--ruby_1_9_3/benchmark/bm_app_uri.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/ruby_1_9_3/benchmark/bm_app_uri.rb b/ruby_1_9_3/benchmark/bm_app_uri.rb
new file mode 100644
index 0000000000..586edfd5dc
--- /dev/null
+++ b/ruby_1_9_3/benchmark/bm_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
+}