examples/client.rb in grenache-ruby-http-0.0.1 vs examples/client.rb in grenache-ruby-http-0.0.3

- old
+ new

@@ -7,11 +7,12 @@ end c = Grenache::Base.new start_time = Time.now -10000.times do |n| - c.request("test","world #{n}") +10.times do |n| + resp = c.request("test","world #{n}") + puts resp end puts "Total Time: #{Time.now - start_time}"