<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -2,22 +2,24 @@ require 'benchmark'
 require 'rsruby'
 
 module Benchmark
-  
+
+  BETTER_BENCHMARK_VERSION = '0.7.0'
+
   class ComparisonPartial
     def initialize( block, options )
       @block1 = block
       @options = options
     end
-    
+
     def with( &amp;block2 )
       times1 = []
       times2 = []
-      
+
       (1..@options[ :iterations ]).each do |iteration|
         if @options[ :verbose ]
           $stdout.print &quot;.&quot;; $stdout.flush
         end
-        
+
         times1 &lt;&lt; Benchmark.realtime do
           @options[ :inner_iterations ].times do |i|
             @block1.call( iteration )
@@ -29,10 +31,10 @@ module Benchmark
           end
         end
       end
-      
+
       r = RSRuby.instance
       wilcox_result = r.wilcox_test( times1, times2 )
-  
+
       {
         :results1 =&gt; {
           :times =&gt; times1,
@@ -53,7 +55,7 @@ module Benchmark
     end
     alias to with
   end
-  
+
   # Options:
   #   :iterations
   #     The number of times to execute the pair of blocks.
@@ -66,7 +68,7 @@ module Benchmark
   #
   # To use better-benchmark properly, it is important to set :iterations and
   # :inner_iterations properly.  There are a few things to bear in mind:
-  # 
+  #
   # (1) Do not set :iterations too high.  It should normally be in the range
   # of 10-20, but can be lower.  Over 25 should be considered too high.
   # (2) Execution time for one run of the blocks under test should not be too
@@ -84,16 +86,16 @@ module Benchmark
     options[ :iterations ] ||= 20
     options[ :inner_iterations ] ||= 1
     options[ :required_significance ] ||= 0.01
-    
+
     if options[ :iterations ] &gt; 30
       warn &quot;The number of iterations is set to #{options[ :iterations ]}.  &quot; +
         &quot;Using too many iterations may make the test results less reliable.  &quot; +
         &quot;It is recommended to increase the number of :inner_iterations instead.&quot;
     end
-    
+
     ComparisonPartial.new( block1, options )
   end
-  
+
   def self.report_on( result )
     puts
     puts( &quot;Set 1 mean: %.3f s&quot; % [ result[ :results1 ][ :mean ] ] )</diff>
      <filename>lib/better-benchmark.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>bee648345b336c1f1da3efa23c23fe622e0b21ff</id>
    </parent>
  </parents>
  <author>
    <name>Pistos</name>
    <email>gitsomegrace.5.pistos@geoshell.com</email>
  </author>
  <url>http://github.com/Pistos/better-benchmark/commit/506ef9c0ec3bc9300dc1cbf4bf759ac45ece6cb6</url>
  <id>506ef9c0ec3bc9300dc1cbf4bf759ac45ece6cb6</id>
  <committed-date>2009-02-11T06:35:52-08:00</committed-date>
  <authored-date>2009-02-11T06:35:52-08:00</authored-date>
  <message>Marked version number.</message>
  <tree>144c435952dbae34af14f604c9c841bee54f49e8</tree>
  <committer>
    <name>Pistos</name>
    <email>gitsomegrace.5.pistos@geoshell.com</email>
  </committer>
</commit>
