doc/BigBench.html in bigbench-0.0.3 vs doc/BigBench.html in bigbench-0.0.4

- old
+ new

@@ -52,10 +52,12 @@ <li>lib/bigbench/bot.rb <li>lib/bigbench/configuration.rb <li>lib/bigbench/executor.rb <li>lib/bigbench/fragment.rb <li>lib/bigbench/output.rb + <li>lib/bigbench/post_processor/environment.rb + <li>lib/bigbench/post_processor/graphs.rb <li>lib/bigbench/post_processor/statistics.rb <li>lib/bigbench/post_processor.rb <li>lib/bigbench/runner.rb <li>lib/bigbench/store.rb <li>lib/bigbench/tracker.rb @@ -115,10 +117,12 @@ <ul> <li class="file"><a href="./Gemfile.html">Gemfile</a> + <li class="file"><a href="./README_rdoc.html">README</a> + <li class="file"><a href="./Rakefile.html">Rakefile</a> <li class="file"><a href="./lib/bigbench/help/executor_txt.html">executor</a> </ul> @@ -157,10 +161,30 @@ <li><a href="./BigBench/PostProcessor.html">BigBench::PostProcessor</a> <li><a href="./BigBench/PostProcessor/Environment.html">BigBench::PostProcessor::Environment</a> + <li><a href="./BigBench/PostProcessor/Environment/Appearings.html">BigBench::PostProcessor::Environment::Appearings</a> + + <li><a href="./BigBench/PostProcessor/Environment/AttributeCluster.html">BigBench::PostProcessor::Environment::AttributeCluster</a> + + <li><a href="./BigBench/PostProcessor/Environment/BenchmarkNotFound.html">BigBench::PostProcessor::Environment::BenchmarkNotFound</a> + + <li><a href="./BigBench/PostProcessor/Environment/Cluster.html">BigBench::PostProcessor::Environment::Cluster</a> + + <li><a href="./BigBench/PostProcessor/Environment/NormalDistribution.html">BigBench::PostProcessor::Environment::NormalDistribution</a> + + <li><a href="./BigBench/PostProcessor/Environment/PolynomialRegression.html">BigBench::PostProcessor::Environment::PolynomialRegression</a> + + <li><a href="./BigBench/PostProcessor/Environment/Statistics.html">BigBench::PostProcessor::Environment::Statistics</a> + + <li><a href="./BigBench/PostProcessor/Graphs.html">BigBench::PostProcessor::Graphs</a> + + <li><a href="./BigBench/PostProcessor/Graphs/LineGraph.html">BigBench::PostProcessor::Graphs::LineGraph</a> + + <li><a href="./BigBench/PostProcessor/Graphs/PieGraph.html">BigBench::PostProcessor::Graphs::PieGraph</a> + <li><a href="./BigBench/PostProcessor/InvalidProcessor.html">BigBench::PostProcessor::InvalidProcessor</a> <li><a href="./BigBench/PostProcessor/Processor.html">BigBench::PostProcessor::Processor</a> <li><a href="./BigBench/PostProcessor/Statistics.html">BigBench::PostProcessor::Statistics</a> @@ -175,10 +199,12 @@ <li><a href="./BigBench/Tracker.html">BigBench::Tracker</a> <li><a href="./BigBench/Tracker/Tracker.html">BigBench::Tracker::Tracker</a> + <li><a href="./Array.html">Array</a> + <li><a href="./EventMachineLoop.html">EventMachineLoop</a> <li><a href="./Float.html">Float</a> <li><a href="./Helpers.html">Helpers</a> @@ -483,11 +509,11 @@ <div id="method-c-post_process" class="method-detail "> <div class="method-heading"> <span class="method-name">post_process</span><span - class="method-args">(processor = nil)</span> + class="method-args">(processor = nil, options = {})</span> <span class="method-click-advice">click to toggle source</span> </div> <div class="method-description"> @@ -548,14 +574,14 @@ </dd></dl> <div class="method-source-code" id="post_process-source"> - <pre><span class="ruby-comment"># File lib/bigbench/post_processor.rb, line 192</span> -<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">post_process</span> <span class="ruby-identifier">processor</span> = <span class="ruby-keyword">nil</span> + <pre><span class="ruby-comment"># File lib/bigbench/post_processor.rb, line 176</span> +<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">post_process</span> <span class="ruby-identifier">processor</span> = <span class="ruby-keyword">nil</span>, <span class="ruby-identifier">options</span> = {} <span class="ruby-identifier">raise</span> <span class="ruby-constant">PostProcessor</span><span class="ruby-operator">::</span><span class="ruby-constant">InvalidProcessor</span>.<span class="ruby-identifier">new</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">processor</span>.<span class="ruby-identifier">nil?</span> <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-operator">!</span><span class="ruby-identifier">block_given?</span> - <span class="ruby-identifier">block_given?</span> <span class="ruby-operator">?</span> <span class="ruby-constant">PostProcessor</span>.<span class="ruby-identifier">add</span>(&amp;<span class="ruby-constant">Proc</span>.<span class="ruby-identifier">new</span>) <span class="ruby-operator">:</span> <span class="ruby-constant">PostProcessor</span>.<span class="ruby-identifier">add</span>(<span class="ruby-identifier">processor</span>) + <span class="ruby-identifier">block_given?</span> <span class="ruby-operator">?</span> <span class="ruby-constant">PostProcessor</span>.<span class="ruby-identifier">add</span>(<span class="ruby-identifier">processor</span>, <span class="ruby-identifier">options</span>, &amp;<span class="ruby-constant">Proc</span>.<span class="ruby-identifier">new</span>) <span class="ruby-operator">:</span> <span class="ruby-constant">PostProcessor</span>.<span class="ruby-identifier">add</span>(<span class="ruby-identifier">processor</span>, <span class="ruby-identifier">options</span>) <span class="ruby-keyword">end</span></pre> </div><!-- post_process-source --> </div> @@ -579,11 +605,11 @@ <p>List all initialized post processors</p> <div class="method-source-code" id="post_processors-source"> - <pre><span class="ruby-comment"># File lib/bigbench/post_processor.rb, line 198</span> + <pre><span class="ruby-comment"># File lib/bigbench/post_processor.rb, line 182</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">post_processors</span> <span class="ruby-constant">PostProcessor</span>.<span class="ruby-identifier">all</span> <span class="ruby-keyword">end</span></pre> </div><!-- post_processors-source --> @@ -641,10 +667,10 @@ <p>Runs all initialized post processors after the trackings have been written</p> <div class="method-source-code" id="run_post_processors-21-source"> - <pre><span class="ruby-comment"># File lib/bigbench/post_processor.rb, line 203</span> + <pre><span class="ruby-comment"># File lib/bigbench/post_processor.rb, line 187</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">run_post_processors!</span> <span class="ruby-constant">PostProcessor</span>.<span class="ruby-identifier">run!</span> <span class="ruby-keyword">end</span></pre> </div><!-- run_post_processors-21-source -->